[package]
edition = "2024"
name = "normalize-punctuation"
version = "0.2.0"
authors = ["Quentin Richert <noreply@richert.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Normalize punctuation in Markdown files."
readme = "README.md"
keywords = [
"normalize",
"punctuation",
"lint",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qrichert/normalize-punctuation.git"
[lib]
name = "normalize_punctuation"
path = "src/lib.rs"
[[bin]]
name = "normalize-punctuation"
path = "src/main.rs"
[dependencies.ignore]
version = "0.4.23"
[dependencies.pathdiff]
version = "0.2.3"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true