[badges.github-actions]
branch = "main"
repository = "johnlepikhin/markdown-tool"
workflow = "CI"
[badges.maintenance]
status = "actively-developed"
[[bin]]
name = "markdown-tool"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive"]
version = "4.0"
[dependencies.markdown-ppp]
features = ["ast-serde", "latex-printer"]
version = "2.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.structdoc]
version = "0.1.4"
[dev-dependencies.tempfile]
version = "3.0"
[package]
authors = ["Evgenii Lepikhin <johnlepikhin@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing", "value-formatting"]
description = "A CLI utility for converting Markdown into AST and vice versa"
documentation = "https://docs.rs/markdown-tool"
edition = "2021"
homepage = "https://github.com/johnlepikhin/markdown-tool#readme"
keywords = ["markdown", "converter", "cli", "ast"]
license = "MIT"
name = "markdown-tool"
readme = "README.md"
repository = "https://github.com/johnlepikhin/markdown-tool"
rust-version = "1.70"
version = "2.0.0"
[package.metadata.deb]
assets = [["target/release/markdown-tool", "usr/bin/", "755"], ["README.md", "usr/share/doc/markdown-tool/README.md", "644"], ["LICENSE", "usr/share/doc/markdown-tool/LICENSE", "644"]]
copyright = "2025, Evgenii Lepikhin"
depends = "$auto"
license-file = ["LICENSE", "4"]
maintainer = "Evgenii Lepikhin <johnlepikhin@gmail.com>"
priority = "optional"
section = "utility"
[profile.release]
codegen-units = 1
debug = 0
lto = true
strip = true
[[test]]
name = "integration"
path = "tests/integration.rs"