rumdl 0.0.33

A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)
Documentation
[[bench]]
name = "range_performance"
path = "benches/range_performance.rs"

[[bench]]
harness = false
name = "range_utils_benchmark"
path = "benches/range_utils_benchmark.rs"

[[bench]]
harness = false
name = "rule_performance"
path = "benches/rule_performance.rs"

[[bin]]
name = "rumdl"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.81"

[dependencies.clap]
features = ["derive"]
version = "4.5.34"

[dependencies.colored]
version = "3.0.0"

[dependencies.console]
version = "0.15.8"

[dependencies.dialoguer]
version = "0.11.0"

[dependencies.fancy-regex]
version = "0.14.0"

[dependencies.glob]
version = "0.3.2"

[dependencies.globset]
version = "0.4.14"

[dependencies.ignore]
version = "0.4.23"

[dependencies.indicatif]
version = "0.17.8"

[dependencies.itertools]
version = "0.10"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.pyo3]
features = ["extension-module", "abi3-py37"]
optional = true
version = "0.24.0"

[dependencies.rayon]
optional = true
version = "1.8.0"

[dependencies.regex]
version = "1.10.3"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.serde_yaml]
version = "0.9.32"

[dependencies.strsim]
version = "0.10"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.toml]
version = "0.8.20"

[dependencies.walkdir]
version = "2.5.0"

[dev-dependencies.assert_cmd]
version = "2.0.13"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.glob]
version = "0.3.2"

[dev-dependencies.ignore]
version = "0.4.23"

[dev-dependencies.predicates]
version = "3.1.0"

[dev-dependencies.proptest]
version = "1.4.0"

[dev-dependencies.rand]
version = "0.8.5"

[dev-dependencies.regex]
version = "1.10.3"

[dev-dependencies.tempfile]
version = "3.19.1"

[dev-dependencies.walkdir]
version = "2.5.0"

[features]
default = ["parallel", "profiling"]
parallel = ["rayon"]
profiling = []
python = ["pyo3"]
structure_preprocessing = []

[lib]
crate-type = ["cdylib", "rlib"]
name = "rumdl"
path = "src/lib.rs"

[package]
authors = ["Ruben J. Jongejan <ruben.jongejan@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "text-processing"]
description = "A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)"
documentation = "https://github.com/rvben/rumdl/blob/main/docs"
edition = "2021"
exclude = [".github/", ".gitignore", "*.bak"]
homepage = "https://github.com/rvben/rumdl"
keywords = ["markdown", "linter", "markdown-linter", "static-analysis", "documentation"]
license = "MIT"
name = "rumdl"
readme = "README.md"
repository = "https://github.com/rvben/rumdl"
version = "0.0.33"

[[test]]
name = "advanced_integration_tests"
path = "tests/advanced_integration_tests.rs"

[[test]]
name = "cli_duplication_test"
path = "tests/cli_duplication_test.rs"

[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"

[[test]]
name = "commonmark_compliance_tests"
path = "tests/commonmark_compliance_tests.rs"

[[test]]
name = "comprehensive_integration_tests"
path = "tests/comprehensive_integration_tests.rs"

[[test]]
name = "config_application_tests"
path = "tests/config_application_tests.rs"

[[test]]
name = "config_tests"
path = "tests/config_tests.rs"

[[test]]
name = "exclude_test"
path = "tests/exclude_test.rs"

[[test]]
name = "include_test"
path = "tests/include_test.rs"

[[test]]
name = "init_command_test"
path = "tests/init_command_test.rs"

[[test]]
name = "init_tests"
path = "tests/init_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "output_format_tests"
path = "tests/output_format_tests.rs"

[[test]]
name = "perf_check"
path = "tests/perf_check.rs"

[[test]]
name = "utils_markdown_edge_cases"
path = "tests/utils_markdown_edge_cases.rs"

[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"