2019-08-08 11:24:50 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-dict"
|
2024-01-02 21:54:19 -05:00
|
|
|
version = "0.11.5"
|
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-10-16 13:58:00 -04:00
|
|
|
csv = "1.3"
|
2023-11-30 19:25:50 -05:00
|
|
|
itertools = "0.12"
|
2022-08-01 15:45:58 -04:00
|
|
|
edit-distance = "2.1"
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2023-10-16 13:58:00 -04:00
|
|
|
codegenrs = "3.0"
|
2022-08-01 15:45:58 -04:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2023-07-14 15:01:55 -04:00
|
|
|
varcon = { version = "^0.7", path = "../varcon" }
|
2024-01-31 20:02:49 -05:00
|
|
|
snapbox = { version = "0.4.16", features = ["path"] }
|
|
|
|
indexmap = "2.2.2"
|