2019-08-23 05:17:15 +02:00
|
|
|
[package]
|
|
|
|
name = "monolith"
|
2021-07-04 07:33:09 +02:00
|
|
|
version = "2.6.1"
|
2019-08-23 20:44:16 +02:00
|
|
|
authors = [
|
|
|
|
"Sunshine <sunshine@uberspace.net>",
|
2019-08-24 17:35:06 +02:00
|
|
|
"Mahdi Robatipoor <mahdi.robatipoor@gmail.com>",
|
2019-10-23 00:36:10 +02:00
|
|
|
"Emmanuel Delaborde <th3rac25@gmail.com>",
|
2019-12-10 04:21:54 +01:00
|
|
|
"Emi Simpson <emi@alchemi.dev>",
|
2020-01-03 07:43:25 +01:00
|
|
|
"rhysd <lin90162@yahoo.co.jp>",
|
2019-08-23 20:44:16 +02:00
|
|
|
]
|
2020-12-26 06:38:12 +01:00
|
|
|
edition = "2018"
|
2019-08-24 02:19:49 +02:00
|
|
|
description = "CLI tool for saving web pages as a single HTML file"
|
2020-12-26 06:38:12 +01:00
|
|
|
homepage = "https://github.com/Y2Z/monolith"
|
|
|
|
repository = "https://github.com/Y2Z/monolith"
|
|
|
|
readme = "README.md"
|
2020-12-26 09:28:19 +01:00
|
|
|
keywords = ["web", "http", "html", "download", "command-line"]
|
2020-12-26 06:38:12 +01:00
|
|
|
categories = ["command-line-utilities", "web-programming"]
|
|
|
|
include = [
|
|
|
|
"src/*.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
]
|
2021-03-01 06:54:46 +01:00
|
|
|
license = "CC0-1.0"
|
2019-08-23 05:17:15 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-02 15:58:28 +02:00
|
|
|
atty = "0.2.14" # Used for highlighting network errors
|
2021-10-18 10:26:11 +02:00
|
|
|
base64 = "0.13.0" # Used for integrity attributes
|
2020-11-20 11:29:26 +01:00
|
|
|
chrono = "0.4.19" # Used for formatting creation timestamp
|
2020-11-01 16:11:41 +01:00
|
|
|
clap = "2.33.3"
|
2021-01-30 03:22:10 +01:00
|
|
|
cssparser = "0.28.1"
|
2021-10-18 10:26:11 +02:00
|
|
|
encoding_rs = "0.8.29"
|
2019-09-22 18:57:50 +02:00
|
|
|
html5ever = "0.24.1"
|
2021-10-18 10:26:11 +02:00
|
|
|
percent-encoding = "2.1.0"
|
2021-06-02 15:58:28 +02:00
|
|
|
regex = "1.5.4" # Used for parsing srcset and NOSCRIPT
|
|
|
|
sha2 = "0.9.5" # Used for calculating checksums during integrity checks
|
|
|
|
url = "2.2.2"
|
2020-01-07 05:22:28 +01:00
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2021-07-04 07:31:55 +02:00
|
|
|
version = "0.11.4"
|
2020-01-07 05:22:28 +01:00
|
|
|
default-features = false
|
|
|
|
features = ["default-tls", "blocking", "gzip"]
|
2020-02-14 05:46:08 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-18 10:26:11 +02:00
|
|
|
assert_cmd = "2.0.2"
|