2023-06-27 15:54:04 +02:00
|
|
|
[package]
|
|
|
|
name = "listload"
|
2023-09-29 19:25:03 +02:00
|
|
|
version = "0.2.0"
|
2023-06-27 15:54:04 +02:00
|
|
|
edition = "2021"
|
2023-06-27 18:19:53 +02:00
|
|
|
license = "EUPL-1.2"
|
2023-06-28 00:21:20 +02:00
|
|
|
authors = ["Adrian Wannenmacher <tfld@tfld.dev>"]
|
|
|
|
description = "Download a list of predefined files."
|
|
|
|
repository = "https://github.com/TeFiLeDo/listload"
|
2023-06-28 00:32:45 +02:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
keywords = ["download", "http", "https"]
|
2023-06-27 15:54:04 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-29 19:25:03 +02:00
|
|
|
anyhow = "1.0.75"
|
|
|
|
clap = { version = "4.4.6", features = ["env", "derive", "wrap_help", "cargo", "unicode"] }
|
|
|
|
human-panic = "1.2.1"
|
|
|
|
reqwest = { version = "0.11.20", features = ["brotli", "deflate", "gzip"] }
|
|
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
|
|
serde_json = "1.0.107"
|
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|