mirror of
https://github.com/Cian-H/fastmath.git
synced 2025-12-22 22:22:02 +00:00
First dev commit
This commit is contained in:
30
Cargo.toml
Normal file
30
Cargo.toml
Normal file
@@ -0,0 +1,30 @@
|
||||
[package]
|
||||
name = "fastmath"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
bincode = "1.3.3"
|
||||
num-traits = "0.2.15"
|
||||
once_cell = "1.18.0"
|
||||
serde = {version = "1.0.171", features = ["derive"] }
|
||||
|
||||
[build-dependencies]
|
||||
bincode = "1.3.3"
|
||||
num-traits = "0.2.15"
|
||||
serde = {version = "1.0.171", features = ["derive"] }
|
||||
|
||||
[lib]
|
||||
name = "fastmath"
|
||||
path = "src/lib.rs"
|
||||
test = true
|
||||
bench = true
|
||||
|
||||
[[bench]]
|
||||
name = "bench"
|
||||
harness = false
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5.1"
|
||||
Reference in New Issue
Block a user