summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-08 18:14:40 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-08 18:14:40 +0800
commit700ea99aaa80bee2197ce8cd97517b8e157d4416 (patch)
tree101693df6707ee00fc311611614138b09f7b3b71 /Cargo.toml
parent0da5ae5e4f06309520da454b97eac9ae6670d8e4 (diff)
Add Criterion benchmarking for sheet operations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 8 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a3c0910..1b24cda 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,10 +5,7 @@ license-file = "LICENSE-MIT"
authors = ["Weicao-CatilGrass (GitHub)"]
[features]
-all = [
- "utils",
- "lib",
-]
+all = ["utils", "lib"]
utils = [
"cfg_file",
"data_struct",
@@ -80,6 +77,13 @@ strip = "symbols"
chrono = "0.4"
toml = "0.9"
+[dev-dependencies]
+criterion = "0.8"
+
+[[bench]]
+name = "sheet_benchmark"
+harness = false
+
[dependencies]
# ffi
jvlib = { path = "ffi" }