[package]
edition = "2024"
name = "styx-parse"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-based parser for the Styx configuration language"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/styx"
[package.metadata."docs.rs"]
rustdoc-args = [
"--html-in-header",
"arborium-header.html",
]
[features]
default = []
facet = ["dep:facet"]
tracing = ["dep:tracing"]
[lib]
name = "styx_parse"
path = "src/lib.rs"
[dependencies.facet]
version = "0.43"
optional = true
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.facet-testhelpers]
version = "0.43"
[dev-dependencies.tracing]
version = "0.1"