-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
85 lines (72 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "wgsparkl3d"
version = "0.1.0"
license = "Apache-2.0 OR Custom"
edition = "2021"
[lints]
workspace = true
[lib]
name = "wgsparkl3d"
path = "../../src/lib.rs"
required-features = ["dim3"]
[features]
default = ["dim3"]
dim3 = []
[dependencies]
nalgebra = { workspace = true }
wgpu = { workspace = true }
naga_oil = { workspace = true }
bytemuck = { workspace = true }
encase = { workspace = true }
serde = "1"
ron = "0.8.1"
wgcore = "0.2"
wgebra = "0.2"
wgparry3d = "0.2"
wgrapier3d = "0.2"
# TODO: make rapier optional?
rapier3d = "0.23"
[dev-dependencies]
nalgebra = { version = "0.33", features = ["rand"] }
futures-test = "0.3"
serial_test = "3"
approx = "0.5"
async-std = { version = "1", features = ["attributes"] }
bevy = { version = "0.15.0", features = [
"shader_format_glsl",
"shader_format_spirv",
"webgpu",
"jpeg",
] }
wgsparkl_testbed3d = { path = "../wgsparkl-testbed3d", features = ["dim3"] }
obj-rs = { version = "0.7", default-features = false }
bevy_editor_cam = "*"
image = "0.25"
gltf = { version = "1.3", features = ["KHR_materials_pbrSpecularGlossiness"] }
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[[example]]
name = "banana3"
path = "examples/banana3.rs"
doc-scrape-examples = true
crate-type = ["lib"]
[[example]]
name = "elastic_cut3"
path = "examples/elastic_cut.rs"
doc-scrape-examples = true
crate-type = ["lib"]
[[example]]
name = "heightfield3"
path = "examples/heightfield3.rs"
doc-scrape-examples = true
crate-type = ["lib"]
[[example]]
name = "sand3"
path = "examples/sand3.rs"
doc-scrape-examples = true
crate-type = ["lib"]
[[example]]
name = "default_scene"
path = "examples/libs/default_scene.rs"
doc-scrape-examples = true
crate-type = ["lib"]