[[bin]]
name = "asciidocr"
path = "src/bin/asciidocr/main.rs"
[dependencies.anyhow]
version = "1.0.89"
[dependencies.clap]
features = ["derive"]
version = "4.5.20"
[dependencies.docx-rs]
optional = true
version = "0.4.18"
[dependencies.log]
version = "0.4.22"
[dependencies.once_cell]
version = "1.20.2"
[dependencies.regex]
version = "1.11.1"
[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.serde_json]
version = "1.0.128"
[dependencies.simple_logger]
features = ["colors"]
version = "5.0.0"
[dependencies.tera]
features = ["builtins"]
version = "1.20.0"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.assert-json-diff]
version = "2.0.2"
[dev-dependencies.image]
version = "0.25.6"
[dev-dependencies.logtest]
version = "2.0.0"
[dev-dependencies.rstest]
version = "0.26.0"
[dev-dependencies.tempfile]
version = "3.14.0"
[features]
docx = ["dep:docx-rs"]
[lib]
name = "asciidocr"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "parser-implementations", "text-processing"]
description = "A pure-Rust CLI and library for processing and converting asciidoc files"
documentation = "https://docs.rs/asciidocr"
edition = "2024"
keywords = ["asciidoc", "lightweight-markup", "htmlbook"]
license = "MIT"
name = "asciidocr"
readme = "README.md"
repository = "https://github.com/delfanbaum/asciidocr"
version = "0.1.13"
[[test]]
name = "block_tests"
path = "tests/block_tests.rs"
[[test]]
name = "document_tests"
path = "tests/document_tests.rs"
[[test]]
name = "docx_tests"
path = "tests/docx_tests.rs"
[[test]]
name = "htmlbook_tests"
path = "tests/htmlbook_tests.rs"
[[test]]
name = "inline_tests"
path = "tests/inline_tests.rs"
[[test]]
name = "log_tests"
path = "tests/log_tests.rs"
[[test]]
name = "offset_tests"
path = "tests/offset_tests.rs"