[[bench]]
harness = false
name = "citation_removal"
path = "benches/citation_removal.rs"
[[bin]]
name = "md-cite-remove"
path = "src/bin/cli.rs"
required-features = ["cli"]
[[bin]]
name = "mdcr"
path = "src/bin/cli.rs"
required-features = ["cli"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5"
[dependencies.once_cell]
version = "1.19"
[dependencies.regex]
version = "1.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "custom_config"
path = "examples/custom_config.rs"
[features]
cli = ["clap"]
default = ["cli"]
[lib]
name = "markdown_ai_cite_remove"
path = "src/lib.rs"
[package]
authors = ["OpenSite AI <dev@opensite.ai>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "parsing", "command-line-utilities"]
description = "High-performance removal of AI-generated citations and annotations from Markdown text"
documentation = "https://docs.rs/markdown-ai-cite-remove"
edition = "2021"
homepage = "https://opensite.ai/developers"
keywords = ["markdown", "ai", "citation", "annotation", "cleanup"]
license = "MIT OR Apache-2.0"
name = "markdown-ai-cite-remove"
readme = "README.md"
repository = "https://github.com/opensite-ai/markdown-ai-cite-remove"
rust-version = "1.70"
version = "0.3.0"
[profile.bench]
inherits = "release"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"