2019-08-08 11:24:50 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-dict"
|
2023-10-02 11:27:24 -04:00
|
|
|
version = "0.11.1"
|
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]
|
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-02-28 00:34:02 -05:00
|
|
|
csv = "1.2"
|
2023-08-31 23:12:20 -04:00
|
|
|
itertools = "0.11"
|
2022-08-01 15:45:58 -04:00
|
|
|
edit-distance = "2.1"
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2022-08-01 15:45:58 -04:00
|
|
|
codegenrs = "2.0"
|
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2023-07-14 15:01:55 -04:00
|
|
|
varcon = { version = "^0.7", path = "../varcon" }
|
2023-09-30 20:34:31 -04:00
|
|
|
snapbox = { version = "0.4.13", features = ["path"] }
|
|
|
|
indexmap = "2.0.2"
|