First dev commit

This commit is contained in:
Cian Hughes
2023-07-19 16:38:52 +01:00
commit 26e512394e
15 changed files with 1460 additions and 0 deletions

30
Cargo.toml Normal file
View 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"