mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
19 lines
434 B
TOML
19 lines
434 B
TOML
[package]
|
|
name = "mdman"
|
|
version = "0.1.0"
|
|
authors = ["Eric Huss"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Creates a man page page from markdown."
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.31"
|
|
handlebars = { version = "3.2.1", features = ["dir_source"] }
|
|
pulldown-cmark = { version = "0.7.2", default-features = false }
|
|
same-file = "1.0.6"
|
|
serde_json = "1.0.56"
|
|
url = "2.1.1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6.1"
|