An open API service indexing awesome lists of open source software.

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

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();
```