-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
55 lines (50 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = [
"fidget",
"demos/constraints",
"demos/cli",
"demos/viewer",
"workspace-hack",
]
exclude = ["demos/web-editor/crate"]
[profile.release]
debug = true
overflow-checks = true
[profile.bench]
lto = "thin"
codegen-units = 1
[profile.test]
opt-level = 1
[profile.fast-test]
inherits = "test"
opt-level = 0
[workspace.dependencies]
anyhow = "1"
arrayvec = "0.7"
bimap = "0.6.3"
bincode = "1.3.3"
clap = { version = "4", features = ["derive"] }
crossbeam-channel = "0.5"
crossbeam-deque = "0.8"
document-features = "0.2"
dynasmrt = { version = "2.0" }
eframe = { version = "0.27", default-features = false, features = [ "default_fonts", "glow"] }
env_logger = "0.11.2"
getrandom = { version = "0.2", features = ["js"] }
ieee754 = "0.2"
image = { version = "0.24", default-features = false, features = ["png"] }
libc = "0.2"
log = "0.4"
nalgebra = "0.33"
notify = "6.0"
num-traits = "0.2"
ordered-float = "4"
rand = "0.8.5"
rhai = { version = "1.17", features = ["sync"] }
serde = { version = "1.0", features = ["derive", "rc"] }
static_assertions = "1"
thiserror = "1"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4"
windows = { version = "0.54.0", features = ["Win32_Foundation", "Win32_System_Memory"] }