[package]
name = "web2pdf"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A CLI tool to convert web pages to PDFs"
readme = "README.md"
keywords = ["chrome", "automation", "pdf"]
categories = ["command-line-utilities"]
homepage = "https://github.com/Nathan-Mossaad/web2pdf"
repository = "https://github.com/Nathan-Mossaad/web2pdf"
[dependencies]
tokio = { version = "1.51", features = ["macros", "rt-multi-thread"] }
futures = "0.3"
chromiumoxide = { version = "0.9", default-features = false }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
clap = { version = "4.6", features = ["derive"] }
indicatif = "0.18"
tracing-indicatif = "0.3"
web2pdf_lib = { path = "web2pdf_lib", version = "0.1.2" }
[workspace]
members = ["web2pdf_lib"]