-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 825 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 825 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
[workspace]
members = [
"crates/lambert_izzo",
"crates/lambert_izzo_test_support",
"crates/lambert_izzo_wasm",
]
resolver = "3"
[workspace.package]
version = "2.0.0"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sakobu/izzos-lambert"
[workspace.dependencies]
lambert_izzo = { path = "crates/lambert_izzo" }
lambert_izzo_test_support = { path = "crates/lambert_izzo_test_support" }
arrayvec = { version = "0.7", default-features = false }
glam = "0.29"
nalgebra = "0.34"
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
serde = { version = "1", default-features = false }
thiserror = { version = "2", default-features = false }
tsify = "0.5"
wasm-bindgen = "0.2"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1