perf(dict): Add bench outline

This commit is contained in:
Ed Page 2024-12-24 21:19:12 -06:00
parent 9d89015957
commit 9a100d9199
3 changed files with 9 additions and 0 deletions

1
Cargo.lock generated
View file

@ -1496,6 +1496,7 @@ dependencies = [
"codegenrs",
"csv",
"dictgen",
"divan",
"edit-distance",
"indexmap",
"itertools 0.13.0",

View file

@ -28,6 +28,11 @@ dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
varcon = { version = "^1.0", path = "../varcon" }
snapbox = "0.6.5"
indexmap = "2.2.6"
divan = "0.1.16"
[lints]
workspace = true
[[bench]]
name = "benches"
harness = false

View file

@ -0,0 +1,3 @@
fn main() {
divan::main();
}