mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
30 lines
628 B
TOML
30 lines
628 B
TOML
[package]
|
|
name = "varcon-core"
|
|
version = "5.0.0"
|
|
description = "Varcon-relevant data structures"
|
|
readme = "../../README.md"
|
|
categories = ["text-processing"]
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = []
|
|
parser = ["dep:winnow"]
|
|
flags = ["dep:enumflags2"]
|
|
|
|
[dependencies]
|
|
winnow = { version = "0.6.7", optional = true }
|
|
enumflags2 = { version = "0.7", optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dev-dependencies]
|
|
snapbox = "0.6.17"
|