From b841d32e65ce9cea55af3cbfe63c71606058f355 Mon Sep 17 00:00:00 2001 From: doinkythederp Date: Thu, 7 Mar 2024 21:46:41 -0800 Subject: [PATCH] chore: bump version --- Cargo.toml | 2 +- src/protocol/frame.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0351240..b06413b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "elytra-ping" description = "Easily ping and get the status of running Minecraft servers" -version = "2.0.3" +version = "3.0.0" edition = "2021" authors = ["doinkythederp"] rust-version = "1.68" diff --git a/src/protocol/frame.rs b/src/protocol/frame.rs index 6e9cc20..860b129 100644 --- a/src/protocol/frame.rs +++ b/src/protocol/frame.rs @@ -1,4 +1,4 @@ -use std::{array::TryFromSliceError, io::Cursor}; +use std::io::Cursor; use bytes::Buf; use mc_varint::{VarInt, VarIntRead};