2020-05-27 21:46:41 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-vars"
|
2022-08-16 08:53:32 -04:00
|
|
|
version = "0.8.4"
|
2020-05-27 21:46:41 -04:00
|
|
|
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"
|
2020-05-27 21:46:41 -04:00
|
|
|
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/**/*"
|
|
|
|
]
|
2020-05-27 21:46:41 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-03 10:29:38 -04:00
|
|
|
unicase = "2.6"
|
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"] }
|
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"] }
|
2022-08-16 08:52:51 -04:00
|
|
|
snapbox = { version = "0.3.1", features = ["path"] }
|