Skip to content

Commit 5d3ded1

Browse files
Move libium to this repository
1 parent 254bf5f commit 5d3ded1

File tree

24 files changed

+2551
-44
lines changed

24 files changed

+2551
-44
lines changed

Cargo.lock

Lines changed: 64 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
[workspace]
2+
3+
[workspace.dependencies]
4+
reqwest = { version = "0.12", default-features = false, features = [
5+
"rustls-tls",
6+
] }
7+
clap = { version = "4.5", features = ["derive", "env"] }
8+
serde_json = "1.0"
9+
octocrab = "0.44"
10+
ferinth = "2.11"
11+
furse = "1.6"
12+
13+
114
[package]
215

316
name = "ferium"
@@ -23,7 +36,7 @@ authors = [
2336

2437
license = "MPL-2.0"
2538
readme = "README.md"
26-
categories = ["command-line-utilities"]
39+
categories = ["command-line-utilities", "games"]
2740
keywords = ["minecraft", "mod-manager", "modrinth", "curseforge", "github"]
2841

2942
edition = "2021"
@@ -39,32 +52,29 @@ gui = ["rfd"]
3952

4053

4154
[dependencies]
55+
serde_json.workspace = true
56+
octocrab.workspace = true
57+
ferinth.workspace = true
58+
reqwest.workspace = true
59+
furse.workspace = true
60+
clap.workspace = true
61+
4262
rfd = { version = "0.15", optional = true, default-features = false, features = [
4363
"xdg-portal",
4464
"tokio",
4565
] }
46-
reqwest = { version = "0.12", default-features = false, features = [
47-
"rustls-tls",
48-
] }
4966
tokio = { version = "1.44", default-features = false, features = [
5067
"rt-multi-thread",
5168
"macros",
5269
] }
53-
clap = { version = "4.5", features = ["derive", "env"] }
5470
clap_complete = "4.5"
5571
parking_lot = "0.12"
56-
serde_json = "1.0"
5772
indicatif = "0.17"
58-
octocrab = "0.43"
5973
fs_extra = "1.3"
60-
ferinth = "2.11"
6174
colored = "3.0"
6275
inquire = "0.7"
63-
libium = { git = "https://github.com/gorilla-devs/libium", rev = "eed35ae6b695a93b9e26b59974a2b26fe3ac7407" }
64-
# libium = { path = "../libium" }
65-
# libium = "1.32"
76+
libium = { path = "./libium" }
6677
anyhow = "1.0"
67-
furse = "1.5"
6878
size = "0.5"
6979

7080
[dev-dependencies]

0 commit comments

Comments
 (0)