md2pdf/Cargo.toml

26 lines
607 B
TOML
Raw Normal View History

2019-07-15 10:51:44 +02:00
[package]
name = "md2pdf"
2022-10-02 15:31:04 +02:00
version = "0.0.2"
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"
cargo = "1.64"
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.5.2"
pulldown-cmark = "0.5.3"
2022-10-01 14:00:37 +02:00
clap = { version = "4.0.7", features = ["cargo"] }
2022-10-01 14:02:20 +02:00
[lib]
name = "md2pdf"
path = "src/lib.rs"
[[bin]]
name = "md2pdf"
path = "src/main.rs"