-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 1.15 KB
/
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
43
44
45
[package]
name = "rust-verlet"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
collision = "0.20.1"
sdl2 = { version = "0.36.0", features = ["unsafe_textures", "gfx", "image"] }
nalgebra = "0.32.5"
bevy = { version = "0.14", features = ["dynamic_linking"] } # disable dynamic linking for releases
log = { version = "*", features = ["max_level_debug", "release_max_level_warn"] }
bytemuck = "1.7"
iyes_perf_ui = "0.3.0"
smallvec = { version = "1.11", features = ["union", "const_generics"] }
rand_seeder = "0.3.0"
rand_pcg = "0.3.1"
now = "0.1.3"
chrono = "0.4.38"
sorted-vec = "0.8.5"
itertools = "0.14.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[toolchain]
channel = "nightly"
[[bench]]
name = "v4_bench"
harness = false
[[bench]]
name = "v5_bench"
harness = false