2019-08-23 03:17:15 +00:00
|
|
|
[package]
|
|
|
|
name = "monolith"
|
2020-06-01 09:41:42 +00:00
|
|
|
version = "2.2.7"
|
2020-01-02 15:31:55 +00:00
|
|
|
edition = "2018"
|
2019-08-23 18:44:16 +00:00
|
|
|
authors = [
|
|
|
|
"Sunshine <sunshine@uberspace.net>",
|
2019-08-24 15:35:06 +00:00
|
|
|
"Mahdi Robatipoor <mahdi.robatipoor@gmail.com>",
|
2019-10-22 22:36:10 +00:00
|
|
|
"Emmanuel Delaborde <th3rac25@gmail.com>",
|
2019-12-10 03:21:54 +00:00
|
|
|
"Emi Simpson <emi@alchemi.dev>",
|
2020-01-03 06:43:25 +00:00
|
|
|
"rhysd <lin90162@yahoo.co.jp>",
|
2019-08-23 18:44:16 +00:00
|
|
|
]
|
2019-08-24 00:19:49 +00:00
|
|
|
description = "CLI tool for saving web pages as a single HTML file"
|
2019-08-23 03:17:15 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-20 05:05:39 +00:00
|
|
|
base64 = "0.12.2"
|
|
|
|
chrono = "0.4.11" # Used to render comments indicating the time the page was saved
|
|
|
|
clap = "2.33.1"
|
2020-03-29 07:54:20 +00:00
|
|
|
cssparser = "0.27.2"
|
2019-09-22 16:57:50 +00:00
|
|
|
html5ever = "0.24.1"
|
2020-06-20 05:05:39 +00:00
|
|
|
sha2 = "0.9.0" # Used in calculating checksums during integrity checks
|
2020-02-15 06:47:08 +00:00
|
|
|
url = "2.1.1"
|
2020-01-07 04:22:28 +00:00
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2020-06-20 05:05:39 +00:00
|
|
|
version = "0.10.6"
|
2020-01-07 04:22:28 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["default-tls", "blocking", "gzip"]
|
2020-02-14 04:46:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-20 05:05:39 +00:00
|
|
|
assert_cmd = "1.0.1"
|
2020-03-29 07:54:20 +00:00
|
|
|
tempfile = "3.1.0"
|