[package]
edition = "2021"
name = "ascfix"
version = "0.7.1"
authors = ["evoludigit"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatic ASCII diagram repair tool for Markdown files"
homepage = "https://github.com/evoludigit/ascfix"
documentation = "https://docs.rs/ascfix"
readme = "README.md"
keywords = [
"ascii",
"diagram",
"markdown",
"repair",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/evoludigit/ascfix"
[features]
fuzz = []
stress = []
[lib]
name = "ascfix"
path = "src/lib.rs"
[[bin]]
name = "ascfix"
path = "src/main.rs"
[[test]]
name = "box_detection_tests"
path = "tests/box_detection_tests.rs"
[[test]]
name = "data_loss_tests"
path = "tests/data_loss_tests.rs"
[[test]]
name = "directory_integration_tests"
path = "tests/directory_integration_tests.rs"
[[test]]
name = "discovery_tests"
path = "tests/discovery_tests.rs"
[[test]]
name = "documentation_tests"
path = "tests/documentation_tests.rs"
[[test]]
name = "duplicate_closing_fence_tests"
path = "tests/duplicate_closing_fence_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "fence_tests"
path = "tests/fence_tests.rs"
[[test]]
name = "fenced_diagram_tests"
path = "tests/fenced_diagram_tests.rs"
[[test]]
name = "fuzz_tests"
path = "tests/fuzz_tests.rs"
[[test]]
name = "golden_file_tests"
path = "tests/golden_file_tests.rs"
[[test]]
name = "golden_roundtrip"
path = "tests/golden_roundtrip.rs"
[[test]]
name = "idempotence_tests"
path = "tests/idempotence_tests.rs"
[[test]]
name = "inline_code_protection_tests"
path = "tests/inline_code_protection_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "malformed_fixture_tests"
path = "tests/malformed_fixture_tests.rs"
[[test]]
name = "nested_box_tests"
path = "tests/nested_box_tests.rs"
[[test]]
name = "quality_validation_tests"
path = "tests/quality_validation_tests.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"
[[test]]
name = "text_corruption_tests"
path = "tests/text_corruption_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.colored]
version = "2.1"
[dependencies.lexopt]
version = "0.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.similar]
version = "2.4"
[dependencies.toml]
version = "0.8"
[dev-dependencies.insta]
version = "1.36"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.8"
[lints.clippy]
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"