-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (38 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "bevy_vs_pixi"
version = "0.1.0"
authors = ["Alex Saveau <saveau.alexandre@gmail.com>"]
edition = "2021"
description = "A Bevy benchmark to compare against https://benchmarks.slaylines.io/"
repository = "https://github.com/SUPERCILEX/bevy_vs_pixi"
keywords = ["bevy", "benchmark", "pixijs"]
categories = ["games"]
license = "Apache-2.0"
[dependencies]
log = { version = "0.4.20", features = ["release_max_level_off"] }
rand = { version = "0.8.5", default-features = false }
rand_xoshiro = "0.6.0"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
[dependencies.bevy]
version = "0.11.2"
default-features = false
features = [
"bevy_winit",
"bevy_core_pipeline",
"bevy_render",
"bevy_text",
"bevy_ui",
"multi-threaded",
"x11",
"default_font",
"webgl2",
]
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.web-release]
inherits = "release"
opt-level = "s"
strip = "debuginfo"