typos/crates/varcon/Cargo.toml

28 lines
624 B
TOML
Raw Normal View History

2020-04-07 19:50:06 -05:00
[package]
2020-05-27 20:47:36 -05:00
name = "varcon"
2022-06-15 16:11:53 -05:00
version = "0.6.2"
2020-04-07 19:50:06 -05:00
description = "Source Code Spelling Correction"
2021-11-08 10:11:02 -06:00
authors = ["Ed Page <eopage@gmail.com>"]
license = "MIT OR Apache-2.0"
2020-04-07 19:50:06 -05:00
repository = "https://github.com/crate-ci/typos"
readme = "../../README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
2022-06-01 06:53:10 -05:00
edition = "2021"
2022-06-01 06:50:26 -05:00
rust-version = "1.59.0" # MSRV
2021-11-08 10:11:02 -06:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
2020-04-07 19:50:06 -05:00
[features]
default = ["all"]
all = ["flags"]
2020-05-27 20:51:04 -05:00
flags = ["varcon-core/flags"]
2020-04-07 19:50:06 -05:00
[dependencies]
2021-05-21 20:39:12 -05:00
varcon-core = { version = "^2.0", path = "../varcon-core" }