-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "mrpack-downloader"
version = "0.4.0"
edition = "2021"
description = "Downloader for Modrinth modpacks (.mrpack files)"
license = "MIT"
repository = "https://github.com/JohnTheCoolingFan/mrpack-downloader"
authors = ["Jonh The Cooling Fan <[email protected]>"]
homepage = "https://discord.gg/rqkaeYJhzS"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async_zip = { version = "0.0.17", features = ["tokio", "tokio-fs", "deflate"] }
reqwest = { version = "0.12.3", features = ["stream"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["full"] }
clap = { version = "4.1", features = ["derive"] }
indicatif = { version = "0.17", features = ["tokio"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
semver = { version = "1.0", features = ["serde"] }
url = { version = "2.2", features = ["serde"] }
futures-util = "0.3"
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
futures = "0.3.29"
dialoguer = "0.11.0"
sha1 = "0.10.6"
sha2 = "0.10.8"
hex = { version = "0.4.3", features = ["serde"] }
thiserror = "1.0.56"