forked from gorilla-devs/ferium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (58 loc) · 1.5 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
[package]
name = "ferium"
version = "4.3.4"
edition = "2021"
rust-version = "1.61" # Bound by `std::process::ExitCode`
authors = [
"Ilesh Thiada (theRookieCoder) <[email protected]>",
"薛詠謙 (KyleUltimate)",
"Daniel Hauck (SolidTux)",
]
description = "Fast CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases"
exclude = [
"tests",
"media",
] # Don't need tests and media for installing using crates.io
repository = "https://github.com/gorilla-devs/ferium"
categories = ["command-line-utilities"]
readme = "README.md"
license = "MPL-2.0"
keywords = ["minecraft", "mod-manager", "modrinth", "curseforge", "github"]
[features]
default = ["gui"]
gui = ["libium/gui"]
[dependencies]
octocrab = { version = "0.18", default-features = false, features = ["rustls"] }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
online = { version = "4.0", default-features = false, features = [
"tokio-runtime",
] }
tokio = { version = "1.24", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
clap = { version = "4.1", features = ["derive"] }
clap_complete = "4.1"
serde_json = "1.0"
dialoguer = "0.10"
indicatif = "0.17"
itertools = "0.10"
once_cell = "1.17"
fs_extra = "1.2"
colored = "2.0"
ferinth = "2.7"
libium = "1.22"
anyhow = "1.0"
semver = "1.0"
bytes = "1.1"
furse = "1.5"
size = "0.4"
url = "2.3"
[dev-dependencies]
rand = "0.8"
[profile.release]
codegen-units = 1
strip = true
lto = true