diff options
author | Joey Sacchini <joey@sacchini.net> | 2021-01-09 14:45:41 -0500 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2021-01-09 14:45:58 -0500 |
commit | 436528a7db7c4a837fe563766e475695538b757a (patch) | |
tree | 93ac47783455956e38c12dca726b32390af07097 | |
parent | 9d36f9a8b5810fc39e096155b61c031093bfb713 (diff) | |
download | mcproto-rs-436528a7db7c4a837fe563766e475695538b757a.tar.gz mcproto-rs-436528a7db7c4a837fe563766e475695538b757a.tar.bz2 mcproto-rs-436528a7db7c4a837fe563766e475695538b757a.zip |
prepare for publish
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 6 |
2 files changed, 10 insertions, 0 deletions
@@ -5,6 +5,10 @@ authors = ["Joey Sacchini <joey@sacchini.net>"] 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"] } @@ -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 |