-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "ferrallay"
version = "0.1.1"
edition.workspace = true
repository.workspace = true
rust-version = "1.80.0"
authors = ["Michael Ziminsky (Z)"]
description = "Multi-source backend for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases"
readme = "README.md"
license = "MPL-2.0"
keywords = [
"curseforge",
"github-releases",
"minecraft",
"mod-manager",
"modrinth",
]
[dependencies]
paste = "1"
quick-xml = { version = "0.37.0", default-features = false, features = ["serialize"] }
serde-value = "0.7.0"
sha1 = "0.10"
thiserror = "2.0"
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }
anyhow.workspace = true
async-scoped.workspace = true
dirs.workspace = true
itertools.workspace = true
reqwest = { workspace = true, features = ["rustls-tls"] }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
tokio = { workspace = true, features = ["fs", "io-util", "sync", "process"] }
url = { workspace = true, features = ["serde"] }
# Supported Clients
# TODO: Make each a feature?
curseforge = { package = "curseforge-client", path = "../curseforge-client", version = "1.0" }
modrinth = { package = "modrinth-client", path = "../modrinth-client", version = "2.7" }
github = { package = "octocrab", version = "0.41.2", default-features = false, features = [
"rustls",
"default-client",
] }
[dev-dependencies]
serde_test = "1.0"
[lints]
workspace = true