typos/crates/varcon-core/Cargo.toml

27 lines
630 B
TOML
Raw Normal View History

2020-04-07 20:50:06 -04:00
[package]
2020-05-27 21:51:04 -04:00
name = "varcon-core"
2020-04-07 20:50:06 -04:00
version = "1.0.0"
authors = ["Ed Page <eopage@gmail.com>"]
2020-05-27 21:51:04 -04:00
description = "Varcon-relevant data structures"
2020-04-07 20:50:06 -04:00
repository = "https://github.com/crate-ci/typos"
readme = "../../../README.md"
categories = ["text-processing"]
license = "MIT"
edition = "2018"
[badges]
azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }
2020-05-27 21:51:04 -04:00
[features]
default = []
parser = ["nom"]
flags = ["enumflags2"]
2020-04-07 20:50:06 -04:00
[dependencies]
2020-11-10 20:35:17 -05:00
nom = { version = "6", optional = true }
2020-05-27 21:51:04 -04:00
enumflags2 = { version = "0.6", optional = true }
[package.metadata.docs.rs]
features = [ "parser", "flags" ]