2020-04-07 20:50:06 -04:00
|
|
|
[package]
|
2020-05-27 21:47:36 -04:00
|
|
|
name = "varcon"
|
2022-10-06 09:26:11 -04:00
|
|
|
version = "0.6.5"
|
2020-04-07 20:50:06 -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-04-07 20:50:06 -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-10-04 11:51:03 -04:00
|
|
|
rust-version = "1.64.0" # MSRV
|
2021-11-08 11:11:02 -05:00
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
|
|
|
"LICENSE*",
|
|
|
|
"README.md",
|
|
|
|
"examples/**/*"
|
|
|
|
]
|
2020-04-07 20:50:06 -04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["all"]
|
|
|
|
all = ["flags"]
|
2020-05-27 21:51:04 -04:00
|
|
|
flags = ["varcon-core/flags"]
|
2020-04-07 20:50:06 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-03 10:29:38 -04:00
|
|
|
varcon-core = { version = "^2.2", path = "../varcon-core" }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
codegenrs = "2.0"
|
2022-08-03 10:29:38 -04:00
|
|
|
varcon-core = { version = "^2.2", path = "../varcon-core", features = ["parser"] }
|
2022-10-03 12:36:25 -04:00
|
|
|
snapbox = { version = "0.4.0", features = ["path"] }
|