monolith/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2019-08-23 05:17:15 +02:00
[package]
name = "monolith"
version = "2.4.0"
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
]
edition = "2018"
2019-08-24 02:19:49 +02:00
description = "CLI tool for saving web pages as a single HTML file"
homepage = "https://github.com/Y2Z/monolith"
repository = "https://github.com/Y2Z/monolith"
readme = "README.md"
2020-12-26 09:28:19 +01:00
keywords = ["web", "http", "html", "download", "command-line"]
categories = ["command-line-utilities", "web-programming"]
include = [
"src/*.rs",
"Cargo.toml",
]
2021-03-01 06:54:46 +01:00
license = "CC0-1.0"
2019-08-23 05:17:15 +02:00
[dependencies]
2021-01-30 07:24:35 +01:00
atty = "0.2" # Used for highlighting network errors
2020-11-20 11:29:26 +01:00
base64 = "0.13.0"
chrono = "0.4.19" # Used for formatting creation timestamp
2020-11-01 16:11:41 +01:00
clap = "2.33.3"
2021-01-30 03:22:10 +01:00
cssparser = "0.28.1"
2019-09-22 18:57:50 +02:00
html5ever = "0.24.1"
2021-01-30 03:22:10 +01:00
regex = "1.4.3" # Used for parsing srcset
2020-11-20 11:29:26 +01:00
sha2 = "0.9.2" # Used for calculating checksums during integrity checks
url = "2.2.0"
[dependencies.reqwest]
2021-01-30 03:22:10 +01:00
version = "0.11.0"
default-features = false
features = ["default-tls", "blocking", "gzip"]
2020-02-14 05:46:08 +01:00
[dev-dependencies]
2020-12-28 23:04:27 +01:00
assert_cmd = "1.0.2"
2021-01-30 03:22:10 +01:00
tempfile = "3.2.0"