2020-04-07 19:50:06 -05:00
|
|
|
[package]
|
2020-05-27 20:51:04 -05:00
|
|
|
name = "varcon-core"
|
2022-08-13 12:03:26 -05:00
|
|
|
version = "2.2.5"
|
2020-05-27 20:51:04 -05:00
|
|
|
description = "Varcon-relevant data structures"
|
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"
|
2021-04-13 21:36:47 -05:00
|
|
|
readme = "../../README.md"
|
2020-04-07 19:50:06 -05:00
|
|
|
categories = ["text-processing"]
|
2022-06-01 06:53:10 -05:00
|
|
|
edition = "2021"
|
2022-08-03 09:32:45 -05:00
|
|
|
rust-version = "1.60.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
|
|
|
|
2020-05-27 20:51:04 -05:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
parser = ["nom"]
|
|
|
|
flags = ["enumflags2"]
|
|
|
|
|
2020-04-07 19:50:06 -05:00
|
|
|
[dependencies]
|
2021-12-01 07:59:35 -06:00
|
|
|
nom = { version = "7", optional = true }
|
2021-05-13 10:20:15 -05:00
|
|
|
enumflags2 = { version = "0.7", optional = true }
|
2020-05-27 20:51:04 -05:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = [ "parser", "flags" ]
|