-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (62 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
69 lines (62 loc) · 1.79 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "steadyum"
version = "0.1.0"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "3-dimensional physics sandbox."
documentation = "http://docs.rs/steadyum3d"
homepage = "http://rapier.rs"
repository = "https://github.com/dimforge/steadyum"
readme = "README.md"
keywords = ["physics", "dynamics", "rigid", "real-time", "joints"]
license = "Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "steadyum"
[features]
default = []
dim3 = ["rapier3d"]
dim2 = ["rapier2d"]
parallel = ["rapier2d?/parallel", "rapier3d?/parallel"]
simd-stable = ["rapier2d?/simd-stable", "rapier3d?/simd-stable"]
simd-nightly = ["rapier2d?/simd-nightly", "rapier3d?/simd-nightly"]
serde-serialize = [
"rapier2d?/serde-serialize",
"rapier3d?/serde-serialize",
]
enhanced-determinism = [
"rapier2d?/enhanced-determinism",
"rapier3d?/enhanced-determinism",
]
voxels = ["dot_vox"]
[dependencies]
rapier3d = { version = "0.32", optional = true, features = ["profiler", "debug-render"] }
rapier2d = { version = "0.32", optional = true, features = ["profiler", "debug-render"] }
bitflags = "2"
strum = "0.26"
strum_macros = "0.26"
image = "0.25"
log = "0.4"
oorandom = "11"
bytemuck = "1"
serde = "1"
bincode = "1"
serde_json = "1"
noise = "0.9"
sled = "0.34"
clap = { version = "4", features = ["derive"] }
anyhow = "1"
dashmap = "6"
uuid = "1"
dot_vox = { version = "5", optional = true }
bevy = { version = "0.18", features = ["serialize"] }
bevy_egui = "0.39"
#bevy_stl = "0.18"
bevy_obj = "0.18"
bevy_prototype_lyon = "0.16"
bevy_infinite_grid = "0.18"
# Not compatible with WASM
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
native-dialog = "0.9" # For opening mesh files.
[profile.release]
debug = true