Compare commits

..

No commits in common. "6e60e0f8a089ffb02edd01e8d4e1658d3bdbe5a5" and "4dbf9393170ad7f57605b2f1dfecb8865d3ac8f8" have entirely different histories.

2 changed files with 4 additions and 3 deletions

2
Cargo.lock generated
View File

@ -902,7 +902,7 @@ dependencies = [
[[package]]
name = "md2pdf"
version = "0.0.2"
version = "0.0.1"
dependencies = [
"clap 4.0.7",
"pulldown-cmark",

View File

@ -1,17 +1,18 @@
[package]
name = "md2pdf"
version = "0.0.3"
version = "0.0.1"
authors = ["Thomas Forgione <thomas@forgione.fr>"]
description = "A small utility to convert markdown files to pdf exploiting tectonic."
edition = "2021"
license = "MIT"
repository = "https://gitea.tforgione.fr/tforgione/md2pdf"
readme = "README.md"
cargo = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tectonic = "0.9"
tectonic = "0.5.2"
pulldown-cmark = "0.5.3"
clap = { version = "4.0.7", features = ["cargo"] }