From 436528a7db7c4a837fe563766e475695538b757a Mon Sep 17 00:00:00 2001 From: Joey Sacchini Date: Sat, 9 Jan 2021 14:45:41 -0500 Subject: prepare for publish --- Cargo.toml | 4 ++++ README.md | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index aa3ddd8..b79f42c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,10 @@ authors = ["Joey Sacchini "] edition = "2018" license = "Apache-2.0" keywords = ["minecraft", "games", "protocol", "serialziers", "deserializers", "packets", "mc"] +description = "A crate which helps you implement the minecraft protocol, and implements it for you too!" +homepage = "https://github.com/Twister915/mcproto-rs" +repository = "https://github.com/Twister915/mcproto-rs" +readme = "README.md" [dependencies] serde_json = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/README.md b/README.md index 448d35d..ded7497 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,12 @@ To implement your own protocol, consult this example, and use the macros to defi More documentation to come, just dumping the code since I finished it. +Usage: +```toml +[dependencies] +mcproto-rs = "0.2.0" +``` + ## `#![no_std]` You can use this crate without the standard library (but requiring `alloc`) by setting `default-features = false` in -- cgit