[package]
edition = "2024"
name = "styx-format"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core formatting and parsing utilities for Styx"
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]
tracing = [
"dep:tracing",
"styx-parse/tracing",
]
[lib]
name = "styx_format"
path = "src/lib.rs"
[dependencies.rowan]
version = "0.16"
[dependencies.styx-cst]
version = "1.0"
[dependencies.styx-parse]
version = "1.0"
[dependencies.styx-tree]
version = "1.0"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.insta]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tracing]
version = "0.1"