2019-08-08 11:24:50 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-dict"
|
2022-11-03 23:28:10 -04:00
|
|
|
version = "0.9.10"
|
2019-08-08 11:24:50 -04:00
|
|
|
description = "Source Code Spelling Correction"
|
2019-10-28 10:19:47 -04:00
|
|
|
readme = "../../README.md"
|
2019-08-08 11:24:50 -04:00
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2022-11-01 15:20:38 -04:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2019-08-08 11:24:50 -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]
|
|
|
|
csv = "1.1"
|
|
|
|
itertools = "0.10"
|
|
|
|
edit-distance = "2.1"
|
2022-08-03 10:29:38 -04:00
|
|
|
unicase = "2.6"
|
2022-08-01 15:45:58 -04:00
|
|
|
codegenrs = "2.0"
|
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
|
|
|
varcon = { version = "^0.6", path = "../varcon" }
|
2022-10-03 12:36:25 -04:00
|
|
|
snapbox = { version = "0.4.0", features = ["path"] }
|