2019-10-28 10:01:22 -06:00
|
|
|
[package]
|
|
|
|
name = "codespell-dict"
|
2024-04-30 14:37:49 -05:00
|
|
|
version = "0.4.1"
|
2019-10-28 10:01:22 -06:00
|
|
|
description = "Source Code Spelling Correction"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2019-10-28 16:07:20 -06:00
|
|
|
publish = false
|
2022-11-01 14:20:38 -05:00
|
|
|
license = "CC-BY-SA-3.0"
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2019-10-28 10:01:22 -06:00
|
|
|
|
2024-04-26 21:14:01 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-06-07 08:22:31 -05:00
|
|
|
|
2019-10-28 10:01:22 -06:00
|
|
|
[dependencies]
|
2023-09-01 00:57:02 +00:00
|
|
|
unicase = "2.7"
|
2021-11-16 07:46:33 -06:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen" }
|
2022-08-01 14:45:58 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-01 00:57:02 +00:00
|
|
|
unicase = "2.7"
|
2023-12-01 00:25:50 +00:00
|
|
|
itertools = "0.12"
|
2023-10-16 12:58:00 -05:00
|
|
|
codegenrs = "3.0"
|
2022-08-01 14:45:58 -05:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2024-04-01 00:54:46 +00:00
|
|
|
snapbox = { version = "0.5.9", features = ["path"] }
|
2023-06-08 08:10:49 -05:00
|
|
|
typos = { path = "../typos" }
|
2024-04-26 21:14:01 -05:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|