v86/Cargo.toml

28 lines
354 B
TOML
Raw Normal View History

[package]
2021-01-01 02:14:29 +01:00
name = "v86"
version = "0.1.0"
publish = false
2018-06-30 03:39:28 +02:00
[dev-dependencies]
2018-06-29 21:22:14 +02:00
quickcheck = "0.6.2"
2018-08-25 03:24:11 +02:00
[features]
default = []
profiler = []
[lib]
crate-type = ["cdylib"]
2018-06-29 20:46:21 +02:00
path = "src/rust/lib.rs"
[profile.dev]
2018-06-29 20:46:21 +02:00
lto = false
opt-level = 2
panic = "abort"
overflow-checks = false
[profile.release]
lto = true
2021-01-01 02:14:30 +01:00
opt-level = 3
incremental = false
panic = "abort"