-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 914 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 914 Bytes
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
[package]
name = "example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[[bin]]
name = "example"
[dependencies]
clap = { version = "^4.3", features = ["derive"] }
craballoc.workspace = true
#console-subscriber = "0.4.0"
env_logger = {workspace=true}
futures-lite = {workspace=true}
gltf = { workspace = true }
icosahedron = "0.1"
lazy_static = "1.4.0"
loading-bytes = { path = "../loading-bytes" }
log = { workspace = true }
renderling = { path = "../renderling" }
renderling-ui = { path = "../renderling-ui", features = ["text", "path"] }
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = "^0.4"
web-sys = { workspace = true, features = ["Performance", "Window"] }
winit = { workspace = true }
wgpu = { workspace = true }
[dev-dependencies]
image = { workspace = true }
img-diff = { path = "../img-diff" }