-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 878 Bytes
/
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
[package]
name = "what"
version = "0.1.0"
edition = "2021"
author = "Thomas Wachter"
[[bin]]
name = "what"
path = "src/main.rs"
[lib]
name = "what"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.5"
bitflags = { version = "2.4.1", features = ["serde"] }
byteorder = "1.5.0"
clap = { version = "4.4.3", features = ["derive"] }
gltf = { git = "https://github.com/thomasw04/gltf", features = ["base64", "image", "names", "urlencoding", "utils"] }
image = "0.24.7"
log = "0.4.20"
lru = "0.12.1"
naga = { version = "0.14.2", features = ["glsl-in", "wgsl-in", "spv-in", "spv-out"]}
rand = "0.8.5"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
simplelog = { git = "https://github.com/Drakulix/simplelog.rs.git" }
ureq = "2.9.0"
urlencoding = "2.1.3"