[package]
edition = "2024"
rust-version = "1.85.0"
name = "mandate"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert Markdown or YAML manuals into roff manpages"
homepage = "https://github.com/claylo/mandate"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/claylo/mandate"
resolver = "2"
[lib]
name = "mandate"
path = "src/lib.rs"
[[bin]]
name = "mandate"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "markdown"
path = "tests/markdown.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[[test]]
name = "yaml"
path = "tests/yaml.rs"
[dependencies.clap]
version = "4.5.23"
features = ["derive"]
[dependencies.jsonschema]
version = "0.38.1"
default-features = false
[dependencies.pulldown-cmark]
version = "0.13.0"
[dependencies.serde_json]
version = "1.0.148"
[dependencies.yaml-rust2]
version = "0.11"
[profile.dist]
lto = "thin"
inherits = "release"