typos/crates/typos-vars/Cargo.toml

36 lines
1 KiB
TOML
Raw Normal View History

[package]
name = "typos-vars"
2022-08-13 13:03:26 -04:00
version = "0.8.3"
description = "Source Code Spelling Correction"
2021-11-08 11:11:02 -05:00
authors = ["Ed Page <eopage@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crate-ci/typos"
readme = "../../README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
2022-06-01 07:53:10 -04:00
edition = "2021"
2022-08-03 10:32:45 -04:00
rust-version = "1.60.0" # MSRV
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
[dependencies]
2022-08-03 10:29:38 -04:00
unicase = "2.6"
log = "0.4"
2021-11-16 08:46:33 -05:00
dictgen = { version = "^0.2", path = "../dictgen" }
2022-08-03 10:29:38 -04:00
varcon-core = { version = "^2.2", path = "../varcon-core", features = ["flags"] }
snapbox = { version = "0.3.1", features = ["path"] }
2022-08-01 15:45:58 -04:00
[dev-dependencies]
varcon = { version = "^0.6", path = "../varcon", features = ["flags"] }
2022-08-03 10:29:38 -04:00
varcon-core = { version = "^2.2", path = "../varcon-core", features = ["flags"] }
2022-08-01 15:45:58 -04:00
typos = { version = "^0.10", path = "../typos" }
2022-08-03 10:29:38 -04:00
unicase = "2.6"
2022-08-01 15:45:58 -04:00
codegenrs = "2.0"
itertools = "0.10"
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }