diff --git a/Cargo.lock b/Cargo.lock index 31acba9..f79195c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -686,7 +686,7 @@ checksum = "829a5b2459a4971c4b97014b914e0424daff5f76e31411d1bc5bf4c2ed8010b6" [[package]] name = "simdnbt" -version = "0.5.2" +version = "0.6.0" dependencies = [ "azalea-nbt", "byteorder", @@ -705,7 +705,7 @@ dependencies = [ [[package]] name = "simdnbt-derive" -version = "0.5.2" +version = "0.6.0" dependencies = [ "proc-macro2", "quote", diff --git a/simdnbt-derive/Cargo.toml b/simdnbt-derive/Cargo.toml index 58f8a58..0b5dab8 100644 --- a/simdnbt-derive/Cargo.toml +++ b/simdnbt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simdnbt-derive" -version = "0.5.2" +version = "0.6.0" edition = "2021" description = "Derive macros for simdnbt" license = "MIT" diff --git a/simdnbt/Cargo.toml b/simdnbt/Cargo.toml index d4e55a4..0d84268 100644 --- a/simdnbt/Cargo.toml +++ b/simdnbt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simdnbt" -version = "0.5.2" +version = "0.6.0" edition = "2021" description = "an unnecessarily fast nbt decoder" license = "MIT" @@ -12,7 +12,7 @@ repository = "https://github.com/azalea-rs/simdnbt" byteorder = "1.5.0" flate2 = "^1.0.30" residua-mutf8 = "2.0.0" -simdnbt-derive = { version = "0.5.2", path = "../simdnbt-derive", optional = true } +simdnbt-derive = { version = "0.6.0", path = "../simdnbt-derive", optional = true } thiserror = "1.0.61" valence_nbt = { version = "0.8.0", features = ["binary"] }