2020-04-30 09:05:53 +01:00
|
|
|
[package]
|
2020-10-22 17:10:11 +01:00
|
|
|
description = "A web article downloader"
|
|
|
|
homepage = "https://github.com/hipstermojo/paperoni"
|
|
|
|
repository = "https://github.com/hipstermojo/paperoni"
|
2020-04-30 09:05:53 +01:00
|
|
|
name = "paperoni"
|
2021-02-24 10:03:52 +00:00
|
|
|
version = "0.3.0-alpha1"
|
2020-04-30 09:05:53 +01:00
|
|
|
authors = ["Kenneth Gitere <gitere81@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
2020-10-22 18:00:43 +01:00
|
|
|
readme = "README.md"
|
2020-04-30 09:05:53 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-23 12:55:58 +00:00
|
|
|
async-std = "1.7.0"
|
2020-11-24 06:58:50 +00:00
|
|
|
clap = "2.33.3"
|
2020-11-23 12:55:58 +00:00
|
|
|
epub-builder = "0.4.8"
|
2021-02-06 14:03:02 +00:00
|
|
|
futures = "0.3.12"
|
2020-08-31 17:30:09 +01:00
|
|
|
html5ever = "0.25.1"
|
|
|
|
kuchiki = "0.8.1"
|
2020-11-23 12:55:58 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-05-02 16:33:45 +01:00
|
|
|
md5 = "0.7.0"
|
2020-11-23 12:55:58 +00:00
|
|
|
regex = "1.4.2"
|
2020-11-23 06:39:56 +00:00
|
|
|
surf = "2.1.0"
|
2021-04-17 10:04:06 +01:00
|
|
|
thiserror = "1.0.24"
|
2021-01-24 14:54:33 +00:00
|
|
|
url = "2.2.0"
|