23 lines
459 B
TOML
23 lines
459 B
TOML
[package]
|
|
name = "fast_fp"
|
|
version = "0.1.0"
|
|
authors = ["Renar Narubin <renar@standard.ai>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bench]]
|
|
name = "operations"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
num-traits = { version = "0.2", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
|
rand = "0.8"
|
|
|
|
[profile.test]
|
|
# run tests at high optimization to exercise typical codegen
|
|
opt-level = 3
|