[package]
edition = "2021"
name = "marxml"
version = "0.1.3"
authors = ["Zac Rosenbauer <me@zrosenbauer.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast markdown + XML query and mutation. Rust core for the marxml ecosystem."
homepage = "https://github.com/thebytefarm/marxml"
readme = "README.md"
keywords = [
"markdown",
"xml",
"parser",
"ast",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thebytefarm/marxml"
[lib]
name = "marxml"
path = "src/lib.rs"
[[test]]
name = "fixture_suite"
path = "tests/fixture_suite.rs"
[[test]]
name = "mutate"
path = "tests/mutate.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "proptest_parse"
path = "tests/proptest_parse.rs"
[[test]]
name = "select"
path = "tests/select.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"
[[test]]
name = "snapshot_parse"
path = "tests/snapshot_parse.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[bench]]
name = "parse_bench"
path = "benches/parse_bench.rs"
harness = false
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.codspeed-criterion-compat]
version = "4"
[dev-dependencies.insta]
version = "1.41"
features = [
"yaml",
"glob",
]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.regex]
version = "1.10"
[dev-dependencies.rstest]
version = "0.26"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"