SummationByParts/Cargo.toml

30 lines
536 B
TOML

[package]
name = "maxwell"
version = "0.1.1"
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook", "wee_alloc"]
[dependencies]
wasm-bindgen = "*"
console_error_panic_hook = { version = "*", optional = true }
wee_alloc = { version = "*", optional = true }
ndarray = "0.12.1"
[profile.release]
opt-level = 3
lto = "thin"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "system"
path = "src/benches/bench.rs"
harness = false