monolith/Cargo.toml

31 lines
793 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]
base64 = "0.12.0"
2019-08-23 05:17:15 +02:00
clap = "2.33.0"
2020-03-29 09:54:20 +02:00
cssparser = "0.27.2"
2019-09-22 18:57:50 +02:00
html5ever = "0.24.1"
sha2 = "0.8.1" # Used in calculating checksums during integrity checks
time = "0.1.42" # Used to render comments indicating the time the page was saved
2020-02-15 07:47:08 +01:00
url = "2.1.1"
[dependencies.reqwest]
version = "0.10.*"
default-features = false
features = ["default-tls", "blocking", "gzip"]
2020-02-14 05:46:08 +01:00
[dev-dependencies]
assert_cmd = "0.12.0"
2020-03-29 09:54:20 +02:00
tempfile = "3.1.0"