mirror of
https://github.com/Y2Z/monolith
synced 2024-11-15 06:12:52 +00:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "monolith"
|
|
version = "2.6.0"
|
|
authors = [
|
|
"Sunshine <sunshine@uberspace.net>",
|
|
"Mahdi Robatipoor <mahdi.robatipoor@gmail.com>",
|
|
"Emmanuel Delaborde <th3rac25@gmail.com>",
|
|
"Emi Simpson <emi@alchemi.dev>",
|
|
"rhysd <lin90162@yahoo.co.jp>",
|
|
]
|
|
edition = "2018"
|
|
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"
|
|
keywords = ["web", "http", "html", "download", "command-line"]
|
|
categories = ["command-line-utilities", "web-programming"]
|
|
include = [
|
|
"src/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
license = "CC0-1.0"
|
|
|
|
[dependencies]
|
|
atty = "0.2.14" # Used for highlighting network errors
|
|
base64 = "0.13.0"
|
|
chrono = "0.4.19" # Used for formatting creation timestamp
|
|
clap = "2.33.3"
|
|
cssparser = "0.28.1"
|
|
encoding_rs = "0.8.28"
|
|
html5ever = "0.24.1"
|
|
regex = "1.5.4" # Used for parsing srcset and NOSCRIPT
|
|
sha2 = "0.9.5" # Used for calculating checksums during integrity checks
|
|
url = "2.2.2"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.4"
|
|
default-features = false
|
|
features = ["default-tls", "blocking", "gzip"]
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "1.0.7"
|