typos/crates/typos-vars/Cargo.toml

36 lines
1 KiB
TOML
Raw Normal View History

[package]
name = "typos-vars"
2022-06-15 17:11:53 -04:00
version = "0.8.2"
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-06-01 07:50:26 -04:00
rust-version = "1.59.0" # MSRV
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
[dependencies]
unicase = "2.5"
log = "0.4"
2021-11-16 08:46:33 -05:00
dictgen = { version = "^0.2", path = "../dictgen" }
2021-05-21 21:39:12 -04:00
varcon-core = { version = "^2.0", path = "../varcon-core", features = ["flags"] }
2022-08-01 15:45:58 -04:00
snapbox = { version = "0.3.0", features = ["path"] }
[dev-dependencies]
varcon = { version = "^0.6", path = "../varcon", features = ["flags"] }
varcon-core = { version = "^2.0", path = "../varcon-core", features = ["flags"] }
typos = { version = "^0.10", path = "../typos" }
unicase = "2.5"
codegenrs = "2.0"
itertools = "0.10"
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }