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]
|
2022-08-03 10:29:38 -04:00
|
|
|
unicase = "2.6"
|
2021-11-16 08:46:33 -05:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen" }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-03 10:29:38 -04:00
|
|
|
unicase = "2.6"
|
2022-08-01 15:45:58 -04:00
|
|
|
itertools = "0.10"
|
|
|
|
codegenrs = "2.0"
|
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2023-05-01 11:30:51 -04:00
|
|
|
snapbox = { version = "0.4.11", features = ["path"] }
|
2023-06-08 09:10:49 -04:00
|
|
|
typos = { path = "../typos" }
|