MCModpackManager/Cargo.toml

19 lines
540 B
TOML
Raw Normal View History

2024-08-13 23:56:57 +01:00
[package]
name = "mcmpmgr"
2024-08-20 20:00:43 +01:00
authors = ["Warren Hood <nullbyte001@gmail.com>"]
2024-08-13 23:56:57 +01:00
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.15", features = ["derive"] }
git2 = "0.19.0"
2024-08-20 20:00:43 +01:00
home = "0.5.9"
2024-08-16 00:31:02 +01:00
lhash = { version = "1.1.0", features = ["sha1", "sha512"] }
2024-08-17 16:11:04 +01:00
reqwest = { version = "0.12.5", features = ["json"] }
semver = { version = "1.0.23", features = ["serde"] }
2024-08-13 23:56:57 +01:00
serde = { version = "1.0.207", features = ["derive"] }
sha2 = "0.10.8"
tempfile = "3.12.0"
2024-08-17 16:11:04 +01:00
tokio = { version = "1.39.2", features = ["full"] }
2024-08-13 23:56:57 +01:00
toml = "0.8.19"