highly optimal
Go to file
TriMill beac4bdb42 update things 2023-01-01 15:28:35 -05:00
docs update things 2023-01-01 15:28:35 -05:00
plugins update things 2023-01-01 15:28:35 -05:00
src update things 2023-01-01 15:28:35 -05:00
.gitignore changes 2022-12-17 00:10:01 -05:00
Cargo.lock added velocity support 2022-12-17 15:39:56 -05:00
Cargo.toml added velocity support 2022-12-17 15:39:56 -05:00
README.md plugin documentation 2022-12-18 13:19:54 -05:00

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