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