[package] name = "markdown2pdf" version = "0.1.2" edition = "2021" authors = ["Ismael Sh "] description = "Create PDF with Markdown files (a md to pdf transpiler)" readme = "README.md" license = "MIT" keywords = ["md", "markdown", "pdf", "markdown-to-pdf", "markdown2pdf"] repository = "https://github.com/theiskaa/markdown2pdf" [lib] name = "markdown2pdf" path = "src/lib/lib.rs" [[bin]] name = "markdown2pdf" path = "src/bin/main.rs" [dependencies] genpdfi = "0.2.1" thiserror = "1.0.63" clap = { version = "4.0", features = ["derive"] } dirs = "4.0.0" toml = "0.8.19" once_cell = "1.20.2" rust-embed = "8.5.0" reqwest = { version = "0.12.9", features = ["blocking"] } [profile.release] lto = "thin" codegen-units = 1 strip = true