https://github.com/dxrcy/mcrs
Library to interface with Minecraft using Rust
https://github.com/dxrcy/mcrs
Last synced: about 2 months ago
JSON representation
Library to interface with Minecraft using Rust
- Host: GitHub
- URL: https://github.com/dxrcy/mcrs
- Owner: dxrcy
- License: gpl-3.0
- Created: 2024-10-12T08:01:07.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-04-07T04:17:10.000Z (about 2 months ago)
- Last Synced: 2025-04-09T20:12:10.684Z (about 2 months ago)
- Language: Rust
- Size: 179 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mcrs
A rust rewrite of [mcpp](https://github.com/rozukke/mcpp), a library to
interface with Minecraft.Requires a server running [ELCI](https://github.com/rozukke/elci).
```rs
let mut mc = mcrs::Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();
```