forked from gorilla-devs/ferium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (66 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "ferium"
version = "5.0.0"
repository = "https://github.com/gorilla-devs/ferium"
description = "Fast CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases"
authors = [
## Code
"Ilesh Thiada (theRookieCoder) <[email protected]>", # AUR, Scoop, Homebrew, winget
"atamakahere (atamakahere-git)",
"Tuxinal",
## Package Management
"KyleUltimateS", # AUR
"ImperatorStorm", # AUR
"leo60228", # Nixpkgs
"Sofi (soupglasses)", # Nixpkgs
"Elsie19", # Pacstall
"Julianne (KokaKiwi)", # AUR
"Loatchi", # Portage
"ST-DDT", # winget
]
license = "MPL-2.0"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["minecraft", "mod-manager", "modrinth", "curseforge", "github"]
edition = "2021"
rust-version = "1.80" # Bound by `std::sync::LazyLock`
exclude = [".github", "tests", "media"]
[features]
default = ["gui"]
# Replaces the CLI text input with a GUI file dialogue for picking folders
gui = ["rfd"]
[dependencies]
rfd = { version = "0.14", optional = true, default-features = false, features = [
"xdg-portal",
"tokio",
] }
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
tokio = { version = "1.40", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
serde_json = "1.0"
indicatif = "0.17"
octocrab = "0.40"
fs_extra = "1.3"
ferinth = "2.11"
colored = "2.1"
futures = "0.3"
inquire = "0.7"
libium = { git = "https://github.com/gorilla-devs/libium", rev = "01d3aebe6c21e93376143b49d4bbd3e0325cb411" }
# libium = { path = "../libium" }
# libium = "1.32"
anyhow = "1.0"
furse = "1.5"
size = "0.4"
[dev-dependencies]
rand = "0.8"
[profile.release]
codegen-units = 1
strip = true
lto = "fat"