typos/crates/typos-dict/Cargo.toml

41 lines
964 B
TOML
Raw Normal View History

2019-08-08 10:24:50 -05:00
[package]
name = "typos-dict"
2024-12-31 09:41:20 -06:00
version = "0.12.0"
2019-08-08 10:24:50 -05:00
description = "Source Code Spelling Correction"
2019-10-28 08:19:47 -06:00
readme = "../../README.md"
2019-08-08 10:24:50 -05:00
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
2022-11-01 14:20:38 -05:00
repository.workspace = true
2024-07-26 16:07:19 -05:00
license.workspace = true
2022-11-01 14:20:38 -05:00
edition.workspace = true
rust-version.workspace = true
include.workspace = true
2019-08-08 10:24:50 -05:00
2024-04-26 21:14:01 -05:00
[package.metadata.docs.rs]
all-features = true
2024-12-02 11:30:24 -06:00
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
2024-04-26 21:14:01 -05:00
2019-08-08 10:24:50 -05:00
[dependencies]
2024-12-30 20:58:17 -06:00
phf = "0.11.2"
2024-12-31 09:41:20 -06:00
dictgen = { version = "^0.3", path = "../dictgen", features = ["map"] }
2022-08-01 14:45:58 -05:00
[dev-dependencies]
2023-10-16 12:58:00 -05:00
csv = "1.3"
itertools = "0.14"
2022-08-01 14:45:58 -05:00
edit-distance = "2.1"
2023-09-01 00:57:02 +00:00
unicase = "2.7"
2023-10-16 12:58:00 -05:00
codegenrs = "3.0"
2024-12-31 09:41:20 -06:00
dictgen = { version = "^0.3", path = "../dictgen", features = ["codegen", "map", "aho-corasick"] }
2024-08-23 13:56:24 -05:00
varcon = { version = "^1.0", path = "../varcon" }
2024-05-27 22:11:47 -05:00
snapbox = "0.6.5"
2024-04-01 00:54:46 +00:00
indexmap = "2.2.6"
2024-12-24 21:19:12 -06:00
divan = "0.1.16"
2024-12-30 16:48:19 -06:00
heck = "0.5.0"
2024-04-26 21:14:01 -05:00
[lints]
workspace = true
2024-12-24 21:19:12 -06:00
[[bench]]
name = "benches"
harness = false