Compare commits
No commits in common. "6e60e0f8a089ffb02edd01e8d4e1658d3bdbe5a5" and "4dbf9393170ad7f57605b2f1dfecb8865d3ac8f8" have entirely different histories.
6e60e0f8a0
...
4dbf939317
|
@ -902,7 +902,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "md2pdf"
|
name = "md2pdf"
|
||||||
version = "0.0.2"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 4.0.7",
|
"clap 4.0.7",
|
||||||
"pulldown-cmark",
|
"pulldown-cmark",
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
[package]
|
[package]
|
||||||
name = "md2pdf"
|
name = "md2pdf"
|
||||||
version = "0.0.3"
|
version = "0.0.1"
|
||||||
authors = ["Thomas Forgione <thomas@forgione.fr>"]
|
authors = ["Thomas Forgione <thomas@forgione.fr>"]
|
||||||
description = "A small utility to convert markdown files to pdf exploiting tectonic."
|
description = "A small utility to convert markdown files to pdf exploiting tectonic."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://gitea.tforgione.fr/tforgione/md2pdf"
|
repository = "https://gitea.tforgione.fr/tforgione/md2pdf"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
cargo = "1.64"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tectonic = "0.9"
|
tectonic = "0.5.2"
|
||||||
pulldown-cmark = "0.5.3"
|
pulldown-cmark = "0.5.3"
|
||||||
clap = { version = "4.0.7", features = ["cargo"] }
|
clap = { version = "4.0.7", features = ["cargo"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue