-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
111 lines (105 loc) · 2.53 KB
/
Cargo.toml
File metadata and controls
111 lines (105 loc) · 2.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[workspace]
members = [
"crates/piston-core",
"crates/piston-web",
"crates/piston-models",
"crates/piston-nn",
"crates/piston-macros",
"crates/piston-datasets",
]
resolver = "2"
edition = "2024"
[profile.test]
debug = 2
debug-assertions = true
[profile.release]
panic = 'abort'
lto = "fat"
opt-level = 3
[profile.profiling]
inherits = "release"
debug = 2
[workspace.dependencies]
wgpu = { git = "https://github.com/vinhowe/wgpu", rev = "8aa00b0ef4b2903b542741213f3ad186c4c32186", features = [
"fragile-send-sync-non-atomic-wasm",
] }
bytemuck = { version = "1.14.0", features = [
"wasm_simd",
"aarch64_simd",
"extern_crate_alloc",
] }
num-traits = "0.2.17"
half = { version = "2.3.1", features = ["num-traits", "bytemuck"] }
derive-new = "0.6.0"
log = "0.4.20"
thiserror = "1.0.56"
byteorder = "1.5.0"
npyz = { version = "0.8.3" }
hf-hub = "0.3.2"
serde = "1.0"
anyhow = "1.0.79"
tokenizers = "0.19.1"
js-sys = "0.3.64"
wasm-bindgen = "0.2.104"
wasm-bindgen-test = "0.3.34"
cfg-if = "1.0.0"
chrono = "0.4.35"
clap = "4.5.3"
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
dot3 = "0.1.0"
encase = { git = "https://github.com/vinhowe/encase", branch = "add-member" }
env_logger = "0.11.3"
fern = "0.6.2"
getrandom = "0.2"
glam = "0.30.4"
globwalk = "0.8.1"
gloo-net = { version = "0.5.0", default-features = false }
hound = "3.5.1"
image = { version = "0.25.1", default-features = false, features = [
"jpeg",
"png",
] }
indexed_db_futures = "0.4.1"
itertools = "0.12.1"
lazy_static = "1.4.0"
ndarray = "0.15.6"
ndarray-stats = "0.5.1"
num = "0.4.1"
numpy = "0.20.0"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
pathdiff = "0.2.1"
pollster = "0.3.0"
proptest = "1.4.0"
pyo3 = "0.20.2"
rand = "0.8.4"
rand_distr = "0.4.3"
realfft = "3.3.0"
regex = "1.10.3"
rustc-hash = "1.1.0"
safetensors = "0.4.1"
serde-wasm-bindgen = "0.6.5"
serde_bytes = "0.11.14"
serde_json = "1.0.114"
slotmap = "1.0.7"
smallvec = "1.11.2"
strum = "0.26"
strum_macros = "0.26"
tabled = "0.15.0"
tempfile = "3.3.0"
tera = "1.19.0"
test-strategy = "0.3.1"
tokio = "1.36.0"
uuid = "1.5.0"
wasm-bindgen-futures = "0.4.42"
web-sys = "0.3.69"
web-time = "1.0.0"
futures-intrusive = "0.5.0"
memmap2 = "0.9.5"
maybe-async = "0.2"
async-trait = "0.1.77"
bitvec = { version = "1", default-features = false, features = ["alloc"] }
paste = { version = "1.0.15" }
tsify = { version = "0.5.5", features = ["js"] }
[patch.crates-io]
wasm-bindgen = { git = "https://github.com/vinhowe/wasm-bindgen", rev = "4b4f9cd9731cf35725727bcac92940d51a559a50" }