2020-04-21 20:41:28 +00:00
|
|
|
[package]
|
|
|
|
name = "KIT-ILIAS-downloader"
|
2023-07-24 06:52:31 +00:00
|
|
|
version = "0.3.7"
|
2021-04-21 18:18:54 +00:00
|
|
|
authors = ["FliegendeWurst <2012gdwu@posteo.de>"]
|
2021-05-27 14:45:18 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2020-04-21 20:41:28 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-13 11:01:22 +00:00
|
|
|
reqwest = { version = "0.11.0", default-features = false, features = ["cookies", "gzip", "json", "rustls-tls", "stream", "socks"] }
|
2023-02-04 00:54:55 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["fs", "macros", "net", "rt-multi-thread", "process"] }
|
2022-03-21 10:47:01 +00:00
|
|
|
tokio-util = { version = "0.7.0", features = ["io"] }
|
2020-04-21 20:41:28 +00:00
|
|
|
serde_json = "1.0.51"
|
2023-07-24 06:50:34 +00:00
|
|
|
scraper = "0.17"
|
2020-04-21 20:41:28 +00:00
|
|
|
url = "2.1.1"
|
2020-11-28 15:42:26 +00:00
|
|
|
futures = "0.3.8"
|
2020-11-28 11:56:23 +00:00
|
|
|
futures-util = "0.3.8"
|
|
|
|
futures-channel = "0.3.8"
|
2020-04-21 20:41:28 +00:00
|
|
|
regex = "1.3.7"
|
2020-04-21 21:03:30 +00:00
|
|
|
structopt = "0.3.13"
|
2023-07-24 06:50:34 +00:00
|
|
|
rpassword = "7"
|
|
|
|
rprompt = "2"
|
2020-04-24 08:14:53 +00:00
|
|
|
ignore = "0.4.14"
|
2020-05-08 19:25:45 +00:00
|
|
|
anyhow = "1.0.28"
|
2021-04-15 21:37:36 +00:00
|
|
|
colored = "2.0.0"
|
2022-06-05 15:41:47 +00:00
|
|
|
keyring = { git = "https://github.com/FliegendeWurst/keyring-rs" }
|
2021-04-17 13:38:18 +00:00
|
|
|
cfg-if = "1.0.0"
|
2023-07-24 06:50:34 +00:00
|
|
|
indicatif = "0.17"
|
2021-04-21 18:18:54 +00:00
|
|
|
once_cell = "1.7.2"
|
|
|
|
atty = "0.2.14"
|
2024-04-05 16:14:24 +00:00
|
|
|
h2 = "0.3.26"
|
2023-07-24 06:50:34 +00:00
|
|
|
cookie_store = "0.20"
|
|
|
|
reqwest_cookie_store = "0.6"
|
2021-06-02 09:13:13 +00:00
|
|
|
bytes = "1.0.1"
|
2023-07-24 06:50:34 +00:00
|
|
|
toml = "0.7"
|
2021-11-01 16:36:25 +00:00
|
|
|
tempfile = "3.2.0"
|
2022-01-06 15:41:04 +00:00
|
|
|
ego-tree = "0.6.2"
|
2022-12-19 18:13:08 +00:00
|
|
|
async-recursion = "1.0.0"
|