0
0
mirror of https://github.com/TeFiLeDo/listload.git synced 2024-11-23 20:56:17 +01:00
listload/Cargo.toml

25 lines
823 B
TOML
Raw Normal View History

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"] }
2023-09-30 02:35:18 +02:00
directories = "5.0.1"
fs4 = "0.6.6"
2023-09-29 19:25:03 +02:00
human-panic = "1.2.1"
2023-09-30 02:35:18 +02:00
rand = "0.8.5"
2023-09-29 19:25:03 +02:00
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"] }