-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (74 loc) · 2.36 KB
/
Cargo.toml
File metadata and controls
82 lines (74 loc) · 2.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
[workspace]
members = [
"crates/example",
"crates/examples",
"crates/example-culling",
#"crates/example-wasm",
"crates/loading-bytes",
"crates/renderling",
"crates/renderling-build",
"crates/renderling-ui",
"crates/wire-types",
# "crates/sandbox",
"crates/xtask"
]
exclude = ["./shaders"]
resolver = "2"
[workspace.dependencies]
assert_approx_eq = "1.1.0"
async-channel = "1.8"
axum = "0.8.4"
bytemuck = { version = "1.19.0", features = ["derive"] }
cfg_aliases = "0.2"
clap = { version = "4.5.23", features = ["derive"] }
console_log = "1.0.0"
craballoc = { version = "0.3.1" }
crabslab = { version = "0.6.6", default-features = false }
plotters = "0.3.7"
ctor = "0.2.2"
dagga = "0.2.1"
env_logger = "0.10.0"
futures-lite = "1.13"
futures-util = "0.3.31"
glam = { version = "0.30", default-features = false }
gltf = { version = "1.4,1", features = ["KHR_lights_punctual", "KHR_materials_unlit", "KHR_materials_emissive_strength", "extras", "extensions"] }
glyph_brush = "0.7.8"
image = "0.25"
log = "0.4"
loading-bytes = { path = "crates/loading-bytes", version = "0.1.1" }
lyon = "1.0.1"
naga = { version = "26.0", features = ["spv-in", "wgsl-out", "wgsl-in", "msl-out"] }
new_mime_guess = "4.0.4"
pretty_assertions = "1.4.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
reqwest = "0.12.23"
rustc-hash = "1.1"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0.117"
send_wrapper = "0.6.0"
similarity = "0.2.0"
snafu = "0.8"
spirv-std = { git = "https://github.com/rust-gpu/rust-gpu.git", rev = "05b34493ce661dccd6694cf58afc13e3c8f7a7e0" }
spirv-std-macros = { git = "https://github.com/rust-gpu/rust-gpu.git", rev = "05b34493ce661dccd6694cf58afc13e3c8f7a7e0" }
syn = { version = "2.0.49", features = ["full", "extra-traits", "parsing"] }
tokio = "1.47.1"
tracing = "0.1.41"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wasm-bindgen-test = "0.3"
web-sys = "0.3"
winit = { version = "0.30.12" }
wgpu = { version = "26.0" }
wgpu-core = { version = "26.0" }
metal = "0.32"
[profile.dev]
opt-level = 1
[profile.dev.package.image]
opt-level = 3
[profile.dev.package.gltf]
opt-level = 3
[patch.crates-io]
spirv-std = { git = "https://github.com/rust-gpu/rust-gpu.git", rev = "05b34493ce661dccd6694cf58afc13e3c8f7a7e0" }
[workspace.lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = [ 'cfg(spirv)' ] }