highly optimal
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
TriMill beac4bdb42 update things 11 months ago
docs update things 11 months ago
plugins update things 11 months ago
src update things 11 months ago
.gitignore changes 12 months ago
Cargo.lock added velocity support 12 months ago
Cargo.toml added velocity support 12 months ago
README.md plugin documentation 12 months ago

README.md

Quectocraft

Quectocraft is a minimal, extensible, efficient Minecraft server implementation written in Rust and Lua.

Goals

  • Minimal: By default, Quectocraft does very little by itself. It accepts connections, encodes and decodes packets, and handles the login sequence for you, but everything else must be done via plugins.
  • Extensible: Via its Lua plugin system, Quectocraft can be configured to do a variety of things.
  • Efficient: The vanilla Minecraft server, and even more efficient servers like Spigot and Paper, all use significant amounts of CPU even while idling with no players connected. Due to its low CPU and memory usage, Quectocraft is suitable for running on lower-end systems, or alongside another server without causing additional lag.

Plugin API

See Plugin API