monolith/Cargo.toml

31 lines
794 B
TOML
Raw Normal View History

2019-08-23 05:17:15 +02:00
[package]
name = "monolith"
2020-06-01 11:41:42 +02:00
version = "2.2.7"
2020-01-02 16:31:55 +01:00
edition = "2018"
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
]
2019-08-24 02:19:49 +02:00
description = "CLI tool for saving web pages as a single HTML file"
2019-08-23 05:17:15 +02:00
[dependencies]
2020-06-20 07:05:39 +02: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 09:54:20 +02:00
cssparser = "0.27.2"
2019-09-22 18:57:50 +02:00
html5ever = "0.24.1"
2020-06-20 07:05:39 +02:00
sha2 = "0.9.0" # Used in calculating checksums during integrity checks
2020-02-15 07:47:08 +01:00
url = "2.1.1"
[dependencies.reqwest]
2020-06-20 07:05:39 +02:00
version = "0.10.6"
default-features = false
features = ["default-tls", "blocking", "gzip"]
2020-02-14 05:46:08 +01:00
[dev-dependencies]
2020-06-20 07:05:39 +02:00
assert_cmd = "1.0.1"
2020-03-29 09:54:20 +02:00
tempfile = "3.1.0"