SummationByParts/Cargo.toml

32 lines
627 B
TOML
Raw Normal View History

2019-04-11 21:57:29 +00:00
[package]
2019-09-09 16:27:54 +00:00
name = "maxwell"
version = "0.1.1"
2019-04-11 21:57:29 +00:00
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
edition = "2018"
[lib]
2019-09-09 16:27:54 +00:00
crate-type = ["cdylib", "rlib"]
2019-04-11 21:57:29 +00:00
[features]
default = ["console_error_panic_hook", "wee_alloc"]
[dependencies]
2019-11-07 19:36:03 +00:00
wasm-bindgen = "0.2.54"
console_error_panic_hook = { version = "0.1.6", optional = true }
wee_alloc = { version = "0.4.5", optional = true }
ndarray = { version = "0.13.0", features = ["approx"] }
approx = "0.3.2"
2019-11-09 00:29:29 +00:00
packed_simd = "0.3.3"
2019-04-11 21:57:29 +00:00
[profile.release]
2019-09-03 18:25:44 +00:00
opt-level = 3
lto = "thin"
2019-09-09 17:35:23 +00:00
[dev-dependencies]
2019-11-07 19:36:03 +00:00
criterion = "0.3.0"
2019-09-09 17:35:23 +00:00
[[bench]]
name = "system"
path = "src/benches/bench.rs"
harness = false