dlrs/Cargo.toml

16 lines
374 B
TOML
Raw Normal View History

2022-05-31 15:48:09 +02:00
[package]
2022-06-06 10:56:52 +02:00
name = "rusty-downloader"
2022-06-06 15:55:33 +02:00
version = "0.2.0"
2022-05-31 15:48:09 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3.1.18"
regex = "1.5.6"
2022-06-02 00:19:04 +02:00
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.18.5", features = ["full"] }
2022-06-02 00:19:04 +02:00
serde_json = "1.0"
2022-06-03 00:14:54 +02:00
futures = "0.3"
2022-06-06 13:22:20 +02:00
colored = "2.0.0"