diff options
Diffstat (limited to 'azalea-buf')
| -rw-r--r-- | azalea-buf/Cargo.toml | 2 | ||||
| -rwxr-xr-x | azalea-buf/src/read.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index 22b6701d..95f3b4ac 100644 --- a/azalea-buf/Cargo.toml +++ b/azalea-buf/Cargo.toml @@ -11,7 +11,7 @@ version = "0.8.0" [dependencies] azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.8.0" } byteorder = "^1.5.0" -log = "0.4.20" +tracing = "0.1.40" serde_json = { version = "^1.0", optional = true } thiserror = "1.0.50" uuid = "^1.5.0" diff --git a/azalea-buf/src/read.rs b/azalea-buf/src/read.rs index 8b37ff6a..b4b54917 100755 --- a/azalea-buf/src/read.rs +++ b/azalea-buf/src/read.rs @@ -1,6 +1,5 @@ use super::{UnsizedByteArray, MAX_STRING_LENGTH}; use byteorder::{ReadBytesExt, BE}; -use log::warn; use std::{ backtrace::Backtrace, collections::HashMap, @@ -8,6 +7,7 @@ use std::{ io::{Cursor, Read}, }; use thiserror::Error; +use tracing::warn; #[derive(Error, Debug)] pub enum BufReadError { |
