diff --git a/Cargo.lock b/Cargo.lock index 4f5bfa2..80766f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -720,7 +720,7 @@ dependencies = [ [[package]] name = "minedmap-types" -version = "0.1.4" +version = "0.2.0" dependencies = [ "bincode", "itertools", diff --git a/Cargo.toml b/Cargo.toml index 0051203..854a955 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ lru = "0.13.0" minedmap-default-alloc = { version = "0.1.0", path = "crates/default-alloc", optional = true } minedmap-nbt = { version = "0.1.1", path = "crates/nbt", default-features = false } minedmap-resource = { version = "0.6.0", path = "crates/resource" } -minedmap-types = { version = "0.1.4", path = "crates/types" } +minedmap-types = { version = "0.2.0", path = "crates/types" } notify = "8.0.0" num-integer = "0.1.45" num_cpus = "1.16.0" diff --git a/crates/nbt/Cargo.toml b/crates/nbt/Cargo.toml index 01bbd78..6a4938e 100644 --- a/crates/nbt/Cargo.toml +++ b/crates/nbt/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1.0.75" bytemuck = "1.13.1" fastnbt = "2.4.4" flate2 = "1.1.0" -minedmap-types = { version = "0.1.4", path = "../types" } +minedmap-types = { version = "0.2.0", path = "../types" } serde = "1.0.183" [dev-dependencies] diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 2b83c39..34caa1c 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minedmap-types" -version = "0.1.4" +version = "0.2.0" description = "Common types used by several MinedMap crates" edition.workspace = true license.workspace = true