Rust wrapper for minecraft-data
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trivernis 52bc103c46
Remove submodule and fetch the data in a custom build step instead
4 weeks ago
.github/workflows Update to latest minecraft-data version and adjust the api accordingly 4 weeks ago
src Remove submodule and fetch the data in a custom build step instead 4 weeks ago
.gitignore Remove submodule and fetch the data in a custom build step instead 4 weeks ago
CONTRIBUTING.md Add contribution guidelines 2 years ago
Cargo.toml Remove submodule and fetch the data in a custom build step instead 4 weeks ago
LICENSE Add metadata for crates.io 3 years ago
README.md Increment version, update readme and add workflow 2 years ago
build.rs Remove submodule and fetch the data in a custom build step instead 4 weeks ago

README.md

minecraft-data-rs

This repository is a rust library to access minecraft data. The data itself hosted in the minecraft-data repository and included into the library at compile time.

Excluding the minecraft-data at compile time

By adding default-features=false to the dependency in your Cargo.toml file, you can exclude the minecraft-data from the library.

Usage

use std::collections::HashMap;
use minecraft_data_rs::Api;
use minecraft_data_rs::models::food::Food;
use minecraft_data_rs::models::version::Version;

// create an api wrapper for the latest stable version
let api = Api::latest().expect("failed to retrieve latest version");
let food: Vec<Food> = api.foods.foods_array().unwrap();

for food in food {
    println!("When eating {} you gain {} food points", food.name, food.food_points);
}

Features

Feature Description
include-data includes the whole minecraft-data repository in the binary
api enables the api to query minecraft data

License

This project is Licensed under MIT.