1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Disable benchmark and removed dep used for benchmarking
Author: Yifei Zhan <debian@zhan.science>
Last-Update: 2025-03-22
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -30,14 +30,11 @@
]
license = "MIT"
repository = "https://gitlab.com/bronsonbdevost/next_afterf"
+autobenches = false
-[[bench]]
+[[disabled.bench]]
name = "bench"
harness = false
-[dev-dependencies.criterion]
-version = "0.4.0"
-features = ["html_reports"]
-
[dev-dependencies.fastrand]
version = "1.8.0"
|