-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (70 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
85 lines (70 loc) · 1.97 KB
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
79
80
81
82
83
84
85
[workspace]
[workspace.dependencies]
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
clap = { version = "4.5", features = ["derive", "env"] }
serde_json = "1.0"
octocrab = "0.44"
ferinth = "2.12"
furse = "1.6"
[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) <ileshkt@gmail.com>", # 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", "games"]
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]
serde_json.workspace = true
octocrab.workspace = true
ferinth.workspace = true
reqwest.workspace = true
furse.workspace = true
clap.workspace = true
rfd = { version = "0.17", optional = true, default-features = false, features = [
"xdg-portal",
] }
tokio = { version = "1.49", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
clap_complete = "4.5"
parking_lot = "0.12"
indicatif = "0.18"
fs_extra = "1.3"
colored = "3.1"
inquire = "0.9"
libium = { path = "./libium" }
anyhow = "1.0"
size = "0.5"
[dev-dependencies]
rand = "0.10"
[profile.release]
codegen-units = 1
strip = true
lto = "fat"