-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "mdbook-manmunge"
description = "mdBook pre- and post-processor to help munge (a subset of) the Topiary Book into manpages with mdbook-man"
version = "0.0.1"
readme = "README.md"
edition = "2024"
authors = ["Tweag"]
homepage = "https://topiary.tweag.io"
repository = "https://github.com/topiary/mdbook-manmunge"
documentation = "https://topiary.tweag.io/book"
license = "MIT"
[[bin]]
name = "mdbook-manmunge"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
itertools = "0.11"
log = "0.4"
mdbook = { version = "0.4.47", default-features = false }
pulldown-cmark = "0.13.0"
pulldown-cmark-to-cmark = "21.0.0"
semver = "1.0.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.5.4"