2020-05-27 21:46:41 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-vars"
|
2024-03-01 11:26:53 -05:00
|
|
|
version = "0.8.16"
|
2020-05-27 21:46:41 -04:00
|
|
|
description = "Source Code Spelling Correction"
|
|
|
|
readme = "../../README.md"
|
|
|
|
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
|
2020-05-27 21:46:41 -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" }
|
2023-07-14 15:01:12 -04:00
|
|
|
varcon-core = { version = "^4.0", path = "../varcon-core", features = ["flags"] }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-14 15:01:55 -04:00
|
|
|
varcon = { version = "^0.7", path = "../varcon", features = ["flags"] }
|
2023-07-14 15:01:12 -04:00
|
|
|
varcon-core = { version = "^4.0", path = "../varcon-core", features = ["flags"] }
|
2022-08-01 15:45:58 -04:00
|
|
|
typos = { version = "^0.10", path = "../typos" }
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2023-10-16 13:58:00 -04:00
|
|
|
codegenrs = "3.0"
|
2023-11-30 19:25:50 -05:00
|
|
|
itertools = "0.12"
|
2022-08-01 15:45:58 -04:00
|
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
2024-02-29 20:43:17 -05:00
|
|
|
snapbox = { version = "0.5.7", features = ["path"] }
|