version 0.1.19
Some checks failed
Rust / Build (push) Waiting to run
Rust / Test Suite (push) Waiting to run
Rust / Check (push) Has been cancelled

This commit is contained in:
MeexReay 2025-05-01 15:28:58 +03:00
parent 40e07ff634
commit 2d024a8d63
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ license-file = "LICENSE"
readme = "README.md" readme = "README.md"
keywords = ["minecraft", "protocol", "packets", "lightweight"] keywords = ["minecraft", "protocol", "packets", "lightweight"]
version = "0.1.18" version = "0.1.19"
edition = "2024" edition = "2024"
[dependencies] [dependencies]

View File

@ -6,7 +6,7 @@ This crate can be used for a server on rust idk -_-
## Setup ## Setup
```toml ```toml
rust_mc_proto = "0.1.18" # stable version rust_mc_proto = "0.1.19" # stable version
rust_mc_proto = { git = "https://git.meex.lol/MeexReay/rust_mc_proto" } # unstable version rust_mc_proto = { git = "https://git.meex.lol/MeexReay/rust_mc_proto" } # unstable version
``` ```

View File

@ -333,4 +333,4 @@ impl<R: Read> DataReader for R {
Err(_) => Err(ProtocolError::ReadError), Err(_) => Err(ProtocolError::ReadError),
} }
} }
} }