forked from gorilla-devs/libium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (48 loc) · 1.32 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 = "libium"
version = "1.23.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.13", default-features = false, optional = true, features = [
"xdg-portal",
] }
octocrab = { version = "0.33", default-features = false, features = [
"rustls",
"rustls-webpki-tokio",
] }
tokio = { version = "1.35", default-features = false, features = ["fs"] }
# Locked due to possibility of breaking changes
async_zip = { version = "=0.0.12", default-features = false, features = [
"deflate",
] }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.4", features = ["derive"] }
url = { version = "2.5", features = ["serde"] }
async-recursion = "1.0"
serde_json = "1.0"
dialoguer = "0.11"
once_cell = "1.19"
thiserror = "1.0"
ferinth = "2.10"
furse = "1.5"
home = "0.5"