[package]
edition = "2024"
rust-version = "1.98.0"
name = "clankerdiff-markdown"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable semantic Markdown parsing and review state"
readme = false
license = "MIT"
repository = "https://github.com/contextbridge/diff"
[features]
default = []
review = []
[lib]
name = "clankerdiff_markdown"
path = "src/lib.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[dependencies.clankerdiff-fingerprint]
version = "0.1.0"
[dependencies.pulldown-cmark]
version = "0.13.0"
[dependencies.serde]
version = "1.0.229"
features = [
"derive",
"rc",
]
[dependencies.thiserror]
version = "2.0.20"
[dev-dependencies.serde_json]
version = "1.0.151"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 0
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 0
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"