-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (34 loc) · 1.12 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
[workspace]
members = [
"crates/wgml", "crates/wgml-chat", "crates/wgml-bench"
, "crates/wgml-chat-dioxus", "crates/wgml-chat-dioxus"]
resolver = "2"
[workspace.dependencies]
nalgebra = { version = "0.33.1", features = ["convert-bytemuck"] }
parry2d = { version = "0.18", features = ["bytemuck", "encase"] }
parry3d = { version = "0.18", features = ["bytemuck", "encase"] }
wgpu = { version = "23", features = ["naga-ir"] }
bytemuck = { version = "1", features = ["derive"] }
anyhow = "1"
async-channel = "2"
naga_oil = "0.16"
thiserror = "1"
encase = { version = "0.10.0", features = ["nalgebra"] }
[workspace.lints]
rust.unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(feature, values("dim2", "dim3"))'
] }
[profile.release]
opt-level = 'z'
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
[patch.crates-io]
wgcore-derive = { path = "../wgmath/crates/wgcore-derive" }
wgcore = { path = "../wgmath/crates/wgcore" }
wgebra = { path = "../wgmath/crates/wgebra" }
encase = { git = "https://github.com/sebcrozet/encase", branch = "nalgebra-points" }