typos/crates/varcon/Cargo.toml

28 lines
624 B
TOML
Raw Normal View History

2020-04-07 20:50:06 -04:00
[package]
2020-05-27 21:47:36 -04:00
name = "varcon"
2021-12-14 13:58:03 -05:00
version = "0.6.1"
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"]
edition = "2018"
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/**/*"
]
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]
2021-05-21 21:39:12 -04:00
varcon-core = { version = "^2.0", path = "../varcon-core" }