monolith/Cargo.toml

29 lines
639 B
TOML
Raw Normal View History

2019-08-23 05:17:15 +02:00
[package]
name = "monolith"
2020-01-21 08:32:29 +01:00
version = "2.1.2"
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-02-15 07:47:08 +01:00
base64 = "0.11.0"
2019-08-23 05:17:15 +02:00
clap = "2.33.0"
2019-09-22 18:57:50 +02:00
html5ever = "0.24.1"
lazy_static = "1.4.0"
2020-02-15 07:47:08 +01:00
regex = "1.3.4"
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"