Files
Bampy/bampy/Cargo.toml
2024-03-10 17:18:07 +01:00

34 lines
792 B
TOML

[package]
name = "bampy"
version = "0.1.0"
authors = ["Thea Schöbl <dev@theaninova.de>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
wasm-bindgen = "0.2.84"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = true }
bvh = "0.8.0"
nalgebra = "0.32.4"
num = "0.4.1"
[dependencies.getrandom]
features = ["js"]
[dev-dependencies]
wasm-bindgen-test = "0.3.34"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"