Skip to content

Commit

Permalink
Fix #81 by updating ferinth
Browse files Browse the repository at this point in the history
FIx #80 by locking all dependency versions
Update README.md
  • Loading branch information
theRookieCoder committed May 16, 2022
1 parent 7e795a6 commit 90e978e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 42 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ferium"
version = "3.28.7"
version = "3.28.8"
edition = "2021"
authors = ["Ilesh Thiada (theRookieCoder) <[email protected]>", "薛詠謙 (KyleUltimate)", "Daniel Hauck (SolidTux)"]
description = "Ferium is a CLI program for managing Minecraft mods from Modrinth, CurseForge, and Github Releases"
Expand All @@ -22,26 +22,26 @@ default = ["gui"]
gui = ["libium/gui"]

[dependencies]
tokio = { version = "1.18.2", default-features = false, features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls"] }
octocrab = { version = "0.16.0", default-features = false, features = ["rustls"] }
clap = { version = "3.1.18", features = ["derive"] }
lazy_static = "1.4.0"
serde_json = "1.0.81"
dialoguer = "0.10.1"
indicatif = "0.16.2"
itertools = "0.10.3"
fs_extra = "1.2.0"
anyhow = "1.0.57"
colored = "2.0.0"
ferinth = "2.2.1"
libium = "1.14.1"
online = "3.0.1"
semver = "1.0.9"
bytes = "1.1.0"
furse = "1.1.1"
size = "0.1.2"
url = "2.2.2"
tokio = { version = "=1.18.2", default-features = false, features = ["rt-multi-thread", "macros"] }
reqwest = { version = "=0.11.10", default-features = false, features = ["rustls-tls"] }
octocrab = { version = "=0.16.0", default-features = false, features = ["rustls"] }
clap = { version = "=3.1.18", features = ["derive"] }
lazy_static = "=1.4.0"
serde_json = "=1.0.81"
dialoguer = "=0.10.1"
indicatif = "=0.16.2"
itertools = "=0.10.3"
fs_extra = "=1.2.0"
libium = "=1.14.1"
anyhow = "=1.0.57"
colored = "=2.0.0"
ferinth = "=2.2.2"
online = "=3.0.1"
semver = "=1.0.9"
bytes = "=1.1.0"
furse = "=1.1.2"
size = "=0.1.2"
url = "=2.2.2"

[dev-dependencies]
rand = "0.8"
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,19 @@ Simply specify the mods you use through the CLI, and in just one command you can

## Installation

Ferium is a compiled, statically linked program that does not require any external dependencies.
Ferium is a compiled, statically linked program that does not require external dependencies.
However, Rust programs in general do require `gcc-libs` to be installed.
On Linux the regular version requires GTK, but the `no-gui` version does not need this.

Ferium is coming to more package managers soon!
[Tracking Issue](https://github.com/theRookieCoder/ferium/issues/42)

### AUR (Arch Linux)

- [No GUI version](https://aur.archlinux.org/packages/ferium-bin)
- [GUI file dialog](https://aur.archlinux.org/packages/ferium-gui-bin) (depends on GTK)
- [From Source](https://aur.archlinux.org/packages/ferium-git) (installs the Rust toolchain)
- [No GUI](https://aur.archlinux.org/packages/ferium-bin)
- [No GUI from Source](https://aur.archlinux.org/packages/ferium-git) (installs the Rust toolchain)
- [GUI File Dialogue](https://aur.archlinux.org/packages/ferium-gui-bin) (depends on GTK)
- [GUI File Dialogue from Source](https://aur.archlinux.org/packages/ferium-gui-git) (install the Rust toolchain and depends on GTK)

### Scoop (Windows)

Expand Down

0 comments on commit 90e978e

Please sign in to comment.