2020-04-07 20:50:06 -04:00
|
|
|
[package]
|
2020-05-27 21:51:04 -04:00
|
|
|
name = "varcon-core"
|
2024-07-04 21:29:52 -04:00
|
|
|
version = "4.0.9"
|
2020-05-27 21:51:04 -04:00
|
|
|
description = "Varcon-relevant data structures"
|
2021-04-13 22:36:47 -04:00
|
|
|
readme = "../../README.md"
|
2020-04-07 20:50:06 -04:00
|
|
|
categories = ["text-processing"]
|
2022-11-01 15:20:38 -04:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2020-04-07 20:50:06 -04:00
|
|
|
|
2024-04-26 22:14:01 -04:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2020-05-27 21:51:04 -04:00
|
|
|
[features]
|
|
|
|
default = []
|
2023-07-14 13:33:02 -04:00
|
|
|
parser = ["dep:winnow"]
|
|
|
|
flags = ["dep:enumflags2"]
|
2020-05-27 21:51:04 -04:00
|
|
|
|
2020-04-07 20:50:06 -04:00
|
|
|
[dependencies]
|
2024-04-30 21:02:14 -04:00
|
|
|
winnow = { version = "0.6.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
|
|
|
|
2024-04-26 22:14:01 -04:00
|
|
|
[lints]
|
|
|
|
workspace = true
|