md2pdf/Cargo.toml

17 lines
469 B
TOML
Raw Normal View History

2019-07-15 10:51:44 +02:00
[package]
name = "md2pdf"
2019-07-15 14:45:09 +02:00
version = "0.0.1"
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."
2019-07-15 10:51:44 +02:00
edition = "2018"
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.1.11"
pulldown-cmark = "0.5.2"
2019-07-15 12:04:34 +02:00
clap = "2.33.0"