Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mcpi-revival/mcpi-api-rust

This project ports the MCPI API to Rust!
https://github.com/mcpi-revival/mcpi-api-rust

api mcpi-api minecraft minecraft-pi minecraft-pi-edition raspberry-pi rust rust-crate rust-library

Last synced: about 4 hours ago
JSON representation

This project ports the MCPI API to Rust!

Awesome Lists containing this project

README

        

# Minecraft Pi Edition API for Rust

This project ports the MCPI API to rust!

## How to install

Simply install this by adding `mcpi_api = "0.2.2"` to your Cargo.toml

## Examples

Hello world!
```rust
use mcpi_api::create;
let mut mc = create("localhost:4711");
mc.post_to_chat("Hello World!")
```