Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months ago
JSON representation
This project ports the MCPI API to Rust!
- Host: GitHub
- URL: https://github.com/mcpi-revival/mcpi-api-rust
- Owner: MCPI-Revival
- Created: 2021-04-03T15:59:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T14:23:49.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T21:47:48.453Z (8 months ago)
- Topics: api, mcpi-api, minecraft, minecraft-pi, minecraft-pi-edition, raspberry-pi, rust, rust-crate, rust-library
- Language: Rust
- Homepage:
- Size: 22.5 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!")
```