-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (85 loc) · 2.63 KB
/
Cargo.toml
File metadata and controls
94 lines (85 loc) · 2.63 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
[workspace]
resolver = "2"
members = [
# Fidget crates
"fidget",
"fidget-core",
"fidget-bytecode",
"fidget-gui",
"fidget-jit",
"fidget-mesh",
"fidget-raster",
"fidget-rhai",
"fidget-shapes",
"fidget-solver",
# Non-WASM demos
"demos/constraints",
"demos/cli",
"demos/viewer",
# `cargo hakari` package
"workspace-hack",
]
exclude = ["demos/web-editor/crate"]
[workspace.package]
rust-version = "1.92"
edition = "2024"
license = "MPL-2.0"
repository = "https://github.com/mkeeter/fidget"
description = "Infrastructure for complex closed-form implicit surfaces"
authors = ["Matt Keeter <matt.j.keeter@gmail.com>"]
[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"
approx = "0.5.1"
arrayvec = "0.7"
bincode = "1.3"
clap = { version = "4", features = ["derive"] }
criterion = { version = "0.8", features = ["html_reports"] }
crossbeam-channel = "0.5"
document-features = "0.2"
dynasmrt = "5.0"
eframe = { version = "0.34", features = ["wgpu"] }
enum-map = "2.7.3"
facet = { version = "0.46", features = ["reflect", "doc"] }
env_logger = "0.11"
heck = { version = "0.5" }
image = { version = "0.25", default-features = false, features = ["png"] }
libc = "0.2"
log = "0.4"
nalgebra = { version = "0.34", features = ["serde-serialize"] }
notify = "8.0"
ordered-float = "5"
rand = "0.10"
rayon = "1.10"
rhai = { version = "1.24", features = ["sync"] }
serde = { version = "1.0", features = ["derive", "rc"] }
static_assertions = "1"
strum = { version = "0.28", features = ["derive"] }
strum_macros = { version = "0.27.2" } # see fidget#371
thiserror = "2"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
windows = { version = "0.62", features = ["Win32_Foundation", "Win32_System_Memory"] }
zerocopy = { version = "0.8", features = ["derive"] }
# Local crates
fidget.path = "fidget"
fidget-core = { path = "fidget-core", version = "=0.4.3" }
fidget-bytecode = { path = "fidget-bytecode", version = "=0.4.3" }
fidget-gui = { path = "fidget-gui", version = "=0.4.3" }
fidget-jit = { path = "fidget-jit", version = "=0.4.3" }
fidget-mesh = { path = "fidget-mesh", version = "=0.4.3" }
fidget-raster = { path = "fidget-raster", version = "=0.4.3" }
fidget-rhai = { path = "fidget-rhai", version = "=0.4.3" }
fidget-shapes = { path = "fidget-shapes", version = "=0.4.3" }
fidget-solver = { path = "fidget-solver", version = "=0.4.3" }
workspace-hack = { path = "workspace-hack", version = "0.1" }