typos/crates/varcon-core/Cargo.toml

31 lines
650 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"
2022-10-06 09:26:11 -04:00
version = "2.2.6"
2020-05-27 21:51:04 -04:00
description = "Varcon-relevant data structures"
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"
2021-04-13 22:36:47 -04:00
readme = "../../README.md"
2020-04-07 20:50:06 -04:00
categories = ["text-processing"]
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
2020-05-27 21:51:04 -04:00
[features]
default = []
parser = ["nom"]
flags = ["enumflags2"]
2020-04-07 20:50:06 -04:00
[dependencies]
2021-12-01 08:59:35 -05:00
nom = { version = "7", optional = true }
2021-05-13 11:20:15 -04:00
enumflags2 = { version = "0.7", optional = true }
2020-05-27 21:51:04 -04:00
[package.metadata.docs.rs]
features = [ "parser", "flags" ]