SummationByParts/Cargo.toml

22 lines
425 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]
wasm-bindgen = "*"
console_error_panic_hook = { version = "*", optional = true }
wee_alloc = { version = "*", optional = true }
2019-07-21 11:32:20 +00:00
ndarray = "0.12.1"
2019-04-11 21:57:29 +00:00
[profile.release]
2019-09-03 18:25:44 +00:00
opt-level = 3
lto = "thin"