9 unstable releases (3 breaking)
| new 0.4.3 | Oct 12, 2025 |
|---|---|
| 0.4.2 | Sep 16, 2025 |
| 0.3.0 | Apr 27, 2025 |
| 0.2.1 | Apr 10, 2025 |
| 0.1.1 | Oct 15, 2024 |
#179 in Games
285 downloads per month
Used in mcutils
65KB
2K
SLoC
mcrs: A Rust interface for a Minecraft server.
Based on mcpp.
Requires a server running ELCI.
let mut mc = Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();
mcrs
A rust rewrite of mcpp, a library to interface with Minecraft.
Requires a server running ELCI.
let mut mc = mcrs::Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();