mirror of
https://github.com/crate-ci/typos.git
synced 2025-01-11 01:01:36 -05:00
perf(dict): Add bench outline
This commit is contained in:
parent
9d89015957
commit
9a100d9199
3 changed files with 9 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -1496,6 +1496,7 @@ dependencies = [
|
|||
"codegenrs",
|
||||
"csv",
|
||||
"dictgen",
|
||||
"divan",
|
||||
"edit-distance",
|
||||
"indexmap",
|
||||
"itertools 0.13.0",
|
||||
|
|
|
@ -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
|
||||
|
|
3
crates/typos-dict/benches/benches/main.rs
Normal file
3
crates/typos-dict/benches/benches/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
divan::main();
|
||||
}
|
Loading…
Reference in a new issue