update readme

This commit is contained in:
MeexReay 2024-12-08 17:54:22 +03:00
parent e1407598fd
commit 33b71aac63
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
name = "rust_mc_proto" name = "rust_mc_proto"
description = "lightweight minecraft protocol support in pure rust" description = "lightweight minecraft protocol support in pure rust"
repository = "https://github.com/MeexReay/rust_mc_proto" repository = "https://git.meex.lol/MeexReay/rust_mc_proto"
license-file = "LICENSE" license-file = "LICENSE"
readme = "README.md" readme = "README.md"
keywords = ["minecraft", "protocol", "packets", "lightweight"] keywords = ["minecraft", "protocol", "packets", "lightweight"]
@ -11,7 +11,7 @@ version = "0.1.17"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
flate2 = "1.0.34" flate2 = "1.0.35"
bytebuffer = "2.3.0" bytebuffer = "2.3.0"
uuid = "1.11.0" uuid = "1.11.0"

View File

@ -7,7 +7,7 @@ This crate can be used for a server on rust idk -_-
```toml ```toml
rust_mc_proto = "0.1.17" # stable version rust_mc_proto = "0.1.17" # stable version
rust_mc_proto = { git = "https://github.com/MeexReay/rust_mc_proto" } # unstable version rust_mc_proto = { git = "https://git.meex.lol/MeexReay/rust_mc_proto" } # unstable version
``` ```
Features: Features:
@ -36,7 +36,7 @@ fn main() -> Result<(), ProtocolError> {
} }
``` ```
[More examples](https://github.com/MeexReay/rust_mc_proto/tree/main/examples) \ [More examples](https://git.meex.lol/MeexReay/rust_mc_proto/src/branch/main/examples) \
[Documentation](https://docs.rs/rust_mc_proto/) [Documentation](https://docs.rs/rust_mc_proto/)
### Contributing ### Contributing