md2pdf/Cargo.toml

30 lines
678 B
TOML
Raw Permalink Normal View History

2019-07-15 10:51:44 +02:00
[package]
name = "md2pdf"
version = "0.0.3"
2019-07-15 10:51:44 +02:00
authors = ["Thomas Forgione <thomas@forgione.fr>"]
2019-07-15 12:04:34 +02:00
description = "A small utility to convert markdown files to pdf exploiting tectonic."
edition = "2021"
2019-07-15 14:45:09 +02:00
license = "MIT"
repository = "https://gitea.tforgione.fr/tforgione/md2pdf"
readme = "README.md"
2019-07-15 10:51:44 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tectonic = "0.9"
pulldown-cmark = "0.5.3"
2022-10-01 14:00:37 +02:00
clap = { version = "4.0.7", features = ["cargo"] }
convert_case = "0.6.0"
2022-10-01 14:02:20 +02:00
[lib]
name = "md2pdf"
path = "src/lib.rs"
[[bin]]
name = "md2pdf"
path = "src/main.rs"
2022-10-02 20:27:52 +02:00
[dev-dependencies]
pretty_assertions = "1.3.0"
lopdf = "0.27.0"