FerrumC is a 1.21.1 Minecraft server implementation written from the ground up in Rust. Leveraging the power of the Rust programming language, it is completely multithreaded and offers high performance as well as amazing memory efficiency!
Docs are currently under construction, but you can join our Discord server for help or to discuss the project!
-
ECS Block Diagram (credits: Unity)
- 32 render distance*
- Rust compiler (latest nightly version)
- Cargo (comes with Rust)
Unfortunately, the server is not yet ready for production use. We are still in the early stages of development and are working hard to add more features and fix bugs. For now, you can either compile the server from source or download from Github Actions.
- Go to the Actions tab
- Click on the latest build
- Scroll all the way down to the
Artifacts
section - Download the artifact for your operating system (Windows, Linux, or macOS)
- Follow the instructions in the
Usage
section
# Clone the repository
git clone https://github.com/ferrumc-rs/ferrumc
cd ferrumc
# Build the project
cargo build --release
- Move the FerrumC binary (
ferrumc.exe
orferrumc
depending on the OS) to your desired server directory - Open a terminal in that directory
- (Optional) Generate a config file:
./ferrumc --setup
- Edit the generated
config.toml
file to customize your server settings
- Edit the generated
- Import an existing world: Either copy your world files to the server directory or specify the path to the world files
in the
config.toml
file. This should be the root directory of your world files, containing theregion
directory as well as other folders like DIM1, playerdata, etc. The default import path isimport
so you should end up with a directory structure like this:server_directory βββ config.toml βββ ferrumc.exe βββ import β βββ region β β βββ r.0.0.mca β β βββ r.0.1.mca β β βββ ... β βββ DIM1 β βββ playerdata β βββ ...
- The location of these files is explained here.
- Run the server:
- Windows:
.\ferrumc.exe
- Linux/macOS:
./ferrumc
- You can change logging level by using
--log=<level>
:- e.g.
.\ferrumc.exe --log=info
for info level logging - Possible values:
trace
(Extremely verbose)debug
(Default, Slightly verbose, used for debugging)info
(Recommended, useful information)warn
(Only warnings)error
(Only errors)
- e.g.
- Windows:
We welcome contributions! If you'd like to contribute to FerrumC, please follow these steps:
- Fork the repository
- Create a new branch for your feature
- Implement your changes
- Write or update tests as necessary
- Submit a pull request
Please join our Discord server to get help or discuss the project! Also have a look at our CONTRIBUTING.md file for more information.
- Valence: Valence is a framework for building your own custom server by pulling in different components of their library. FerrumC aims to be a full replacement for the vanilla server. It's like the difference between buying the ingredients to make a meal yourself or just buying a pre-made meal.
- Minestom: Same as Valence, it's a framework to build your own server, which is different to what we are trying to do.
- Paper/Spigot/Bukkit: These are all great tools and have undoubtedly set the groundwork for projects like this to exist, but ultimately they are still somewhat bound to the original server implementation. We aim to write the entire server from the ground up, hopefully giving us a leg up.
- Pumpkin: It really doesn't differ that much. We are both trying to achieve the same thing. It's also not a competition, we are both aware of each other's progress and to be honest the Pumpkin team are doing really well. We won't tolerate any disrespect towards them as they are also undertaking the same monumental task.
Yes! Not currently on our list of priorities and it's very unlikely that we will be able to have 1:1 terrain generation with the vanilla server, but we do plan on implementing some sort of terrain generation as soon as we can.
We do very much plan to have a plugin system and as of right now, our plan is to leverage the JVM to allow for plugins to be written in Kotlin, Java, or any other JVM language. We are also considering other languages such as Rust, JavaScript and possibly other native languages, but that is a fair way off for now.
It's a play on words. Ferrum is the Latin word for iron and it rusts. And MC (Minecraft) in the end. So it becomes Ferrumc. Get it? π
This project is licensed under the MIT License - see the LICENSE.md file for details.