SummationByParts/Cargo.toml

22 lines
425 B
TOML
Raw Normal View History

2019-04-11 21:57:29 +00:00
[package]
name = "webgl"
version = "0.1.0"
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 }
2019-07-21 11:32:20 +00:00
ndarray = "0.12.1"
2019-04-11 21:57:29 +00:00
[profile.release]
opt-level = "s"
lto = "full"