diff options
| author | mat <git@matdoes.dev> | 2025-05-07 11:27:58 +0800 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-05-07 11:27:58 +0800 |
| commit | aa0256da102103eedc9897458dd81516962a80a3 (patch) | |
| tree | 9d01f879a7c75750acd8de0c308247c12bbeea9d /azalea-protocol/src/packets/game/c_server_links.rs | |
| parent | e9452032bfc95cb7ad4a8798b13648e164536cf1 (diff) | |
| download | azalea-drasl-aa0256da102103eedc9897458dd81516962a80a3.tar.xz | |
upgrade rust version and fix clippy warnings
Diffstat (limited to 'azalea-protocol/src/packets/game/c_server_links.rs')
| -rw-r--r-- | azalea-protocol/src/packets/game/c_server_links.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_server_links.rs b/azalea-protocol/src/packets/game/c_server_links.rs index ac08ec27..e566b64e 100644 --- a/azalea-protocol/src/packets/game/c_server_links.rs +++ b/azalea-protocol/src/packets/game/c_server_links.rs @@ -28,7 +28,7 @@ mod tests { ]; let mut buf = Cursor::new(contents.as_slice()); let packet = ClientboundServerLinks::azalea_read(&mut buf).unwrap(); - println!("{:?}", packet); + println!("{packet:?}"); assert_eq!(buf.position(), contents.len() as u64); } |
