2
0
mirror of https://github.com/Y2Z/monolith synced 2024-11-15 06:12:52 +00:00
monolith/Cargo.toml

31 lines
793 B
TOML
Raw Normal View History

2019-08-23 03:17:15 +00:00
[package]
name = "monolith"
2020-05-17 18:06:55 +00:00
version = "2.2.6"
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]
base64 = "0.12.0"
2019-08-23 03:17:15 +00:00
clap = "2.33.0"
2020-03-29 07:54:20 +00:00
cssparser = "0.27.2"
2019-09-22 16:57:50 +00: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 06:47:08 +00:00
url = "2.1.1"
[dependencies.reqwest]
version = "0.10.*"
default-features = false
features = ["default-tls", "blocking", "gzip"]
2020-02-14 04:46:08 +00:00
[dev-dependencies]
assert_cmd = "0.12.0"
2020-03-29 07:54:20 +00:00
tempfile = "3.1.0"