godot_boids/rust/Cargo.toml

28 lines
680 B
TOML
Raw Normal View History

2024-08-29 04:51:21 +03:00
[package]
name = "boids"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[features]
stats = []
[dependencies]
2024-08-30 22:10:38 +03:00
godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["api-4-3", "register-docs"] }
2024-08-29 04:51:21 +03:00
glam = { version = "0.28", features = ["fast-math"] }
rayon = { version = "1.10" }
rustc-hash = "2"
indexmap = "2.4.0"
2024-08-30 21:51:12 +03:00
[target.wasm32-unknown-emscripten.dependencies]
2024-08-30 22:10:38 +03:00
godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["api-4-3", "register-docs", "experimental-wasm", "lazy-function-tables"] }
2024-08-30 21:51:12 +03:00
[profile.release]
opt-level = 3
strip = "debuginfo"
lto = "thin"
incremental = true
codegen-units = 256