Check out Ferium's sister projects Ferinth and Furse, Rust libraries to use the Modrinth and CurseForge APIs
Ferium is an easy to use CLI program for managing Minecraft mods from Modrinth, CurseForge, and GitHub Releases. Simply specify the mods you use through the CLI and in just one command, you can download all the mods and update existing ones.
If you would like to make a feature request, check the issues to see if the feature has already been added/planned. If not, create a new issue.
Note; A lot of Ferium's backend is in a seperate project, Libium. You might want to make some edits there for things like the config
Firstly you need the Rust toolchain (cargo
, rustup
, etc), you can install these from https://rust-lang.org. You'll also need the Just command runner, its like make
but better.
If you want to build Ferium without cloning the repo, set the CurseForge API key environment variable then run cargo install ferium
.
To build the project and install it to your Cargo binary directory, clone the project then run just install
. If you want to install for testing a developement version, run just
or just install-dev
.
If you want to obtain executables for a specific OS, you can run just build-<OS>
and replace <OS>
with mac
, win
, or linux
. The produced binaries will be zipped and moved to out/
. You can run clippy linters using just lint
, and integration tests using cargo test
.