monolith/Cargo.toml

49 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2019-08-23 05:17:15 +02:00
[package]
name = "monolith"
version = "2.6.2"
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-06-02 15:58:28 +02:00
atty = "0.2.14" # Used for highlighting network errors
base64 = "0.13.0" # Used for integrity attributes
chrono = "0.4.20" # Used for formatting creation timestamp
clap = "3.2.16"
cssparser = "0.29.6"
encoding_rs = "0.8.31"
2019-09-22 18:57:50 +02:00
html5ever = "0.24.1"
percent-encoding = "2.1.0"
sha2 = "0.10.2" # Used for calculating checksums during integrity checks
2021-06-02 15:58:28 +02:00
url = "2.2.2"
# Used for parsing srcset and NOSCRIPT
[dependencies.regex]
version = "1.6.0"
default-features = false
features = ["std", "perf-dfa", "unicode-perl"]
[dependencies.reqwest]
version = "0.11.11"
default-features = false
features = ["default-tls", "blocking", "gzip", "brotli", "deflate"]
2020-02-14 05:46:08 +01:00
[dev-dependencies]
assert_cmd = "2.0.4"