summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2025-06-17 16:03:25 +0000
committerSanto Cariotti <santo@dcariotti.me>2025-06-17 16:03:25 +0000
commitef0d4e19843731d491c606d7e70ab0724913616b (patch)
treeb5313fe095c392c470961ca54a0d8ab28ece0d90 /Cargo.toml
parent8ea1195068d39cba871b0f3babc15b9c90cfb337 (diff)
Add benches
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a709534..dcfd0aa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,17 @@
[package]
name = "mt-rs"
-author = "Santo Cariotti <santo@dcariotti.me>"
+authors = ["Santo Cariotti <santo@dcariotti.me>"]
version = "0.1.0"
edition = "2024"
[dependencies]
hex = { version = "0.4.3" }
sha2 = { version = "0.10.9" }
+
+[dev-dependencies]
+criterion = { version = "0.6.0" }
+rand = "0.8"
+
+[[bench]]
+name = "bigfile"
+harness = false