2019-10-28 12:01:22 -04:00
|
|
|
[package]
|
|
|
|
name = "codespell-dict"
|
2021-05-21 21:41:02 -04:00
|
|
|
version = "0.4.0"
|
2019-10-28 12:01:22 -04:00
|
|
|
description = "Source Code Spelling Correction"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2019-10-28 18:07:20 -04:00
|
|
|
publish = false
|
2022-11-01 15:20:38 -04:00
|
|
|
license = "CC-BY-SA-3.0"
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2019-10-28 12:01:22 -04:00
|
|
|
|
2021-06-07 09:22:31 -04:00
|
|
|
[package.metadata.release]
|
2021-11-16 08:44:08 -05:00
|
|
|
release = false
|
2021-06-07 09:22:31 -04:00
|
|
|
|
2019-10-28 12:01:22 -04:00
|
|
|
[dependencies]
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2021-11-16 08:46:33 -05:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen" }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2023-08-31 23:12:20 -04:00
|
|
|
itertools = "0.11"
|
2022-08-01 15:45:58 -04:00
|
|
|
codegenrs = "2.0"
|
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2023-08-31 20:57:02 -04:00
|
|
|
snapbox = { version = "0.4.12", features = ["path"] }
|
2023-06-08 09:10:49 -04:00
|
|
|
typos = { path = "../typos" }
|