typos/crates/typos-vars/Cargo.toml

35 lines
995 B
TOML
Raw Normal View History

[package]
name = "typos-vars"
2024-07-31 12:40:32 -04:00
version = "0.8.20"
description = "Source Code Spelling Correction"
readme = "../../README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
2022-11-01 15:20:38 -04:00
repository.workspace = true
2024-07-26 17:07:19 -04:00
license.workspace = true
2022-11-01 15:20:38 -04:00
edition.workspace = true
rust-version.workspace = true
include.workspace = true
2024-04-26 22:14:01 -04:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[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"
itertools = "0.13"
2022-08-01 15:45:58 -04:00
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
2024-05-27 23:11:47 -04:00
snapbox = "0.6.5"
2024-04-26 22:14:01 -04:00
[lints]
workspace = true