38 lines
922 B
TOML
38 lines
922 B
TOML
[package]
|
|
description = "A web article downloader"
|
|
homepage = "https://github.com/hipstermojo/paperoni"
|
|
repository = "https://github.com/hipstermojo/paperoni"
|
|
name = "paperoni"
|
|
version = "0.6.1-alpha1"
|
|
authors = ["Kenneth Gitere <gitere81@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# atty = "0.2.14"
|
|
async-std = "1.12.0"
|
|
base64 = "0.22.0"
|
|
chrono = "0.4.35"
|
|
clap = { version = "2.34.0", features = ["yaml"] }
|
|
colored = "2.1.0"
|
|
comfy-table = "3.0.0"
|
|
derive_builder = "0.20.0"
|
|
directories = "3.0.2"
|
|
epub-builder = "0.4.8"
|
|
flexi_logger = "0.18.0"
|
|
futures = "0.3.30"
|
|
html5ever = "0.25.1"
|
|
indicatif = "0.16.2"
|
|
itertools = "0.10.1"
|
|
kuchiki = "0.8.1"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.21"
|
|
md5 = "0.7.0"
|
|
openssl-sys = "0.9.101"
|
|
regex = "1.5.4"
|
|
surf = "2.3.2"
|
|
thiserror = "1.0.57"
|
|
url = "2.2.2"
|