forked from gorilla-devs/libium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (49 loc) · 1.35 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
51
[package]
name = "libium"
version = "1.26.2"
edition = "2021"
authors = [
"Ilesh Thiada (theRookieCoder) <ileshkt@gmail.com>",
"Daniel Hauck (SolidTux)",
]
description = "Multi-source backend for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases"
repository = "https://github.com/gorilla-devs/libium"
readme = "README.md"
license = "MPL-2.0"
keywords = [
"minecraft",
"mod-manager",
"modrinth",
"curseforge",
"github-releases",
]
[features]
gui = ["rfd"]
[dependencies]
rfd = { version = "0.14", default-features = false, optional = true, features = [
"xdg-portal",
"tokio",
] }
octocrab = { version = "0.34", default-features = false, features = ["rustls"] }
tokio = { version = "1.36", default-features = false, features = ["fs"] }
# Locked due to possibility of breaking changes
async_zip = { version = "=0.0.16", default-features = false, features = [
"deflate",
"tokio",
"tokio-fs",
] }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
url = { version = "2.5", features = ["serde"] }
async-recursion = "1.0"
serde_json = "1.0"
dialoguer = "0.11"
once_cell = "1.19"
tokio-util = "0.7"
thiserror = "1.0"
ferinth = "2.10"
furse = "1.5"
home = "0.5"