aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUbuntu <github@matdoes.dev>2022-10-17 16:28:51 +0000
committerUbuntu <github@matdoes.dev>2022-10-17 16:28:51 +0000
commit46fbc4654cf65eea05f6c53587c6895844f99555 (patch)
tree6594b0e39bd1715556bfd12c225105f855f44779
parent560805bc2cb4c1653dccce6165c3c0c111ecaccf (diff)
downloadazalea-drasl-46fbc4654cf65eea05f6c53587c6895844f99555.tar.xz
(cargo-release) version 0.2.0
-rwxr-xr-xCargo.lock2
-rw-r--r--[-rwxr-xr-x]azalea-auth/Cargo.toml2
-rw-r--r--azalea-block/Cargo.toml2
-rw-r--r--azalea-buf/Cargo.toml2
-rw-r--r--[-rwxr-xr-x]azalea-chat/Cargo.toml2
-rw-r--r--[-rwxr-xr-x]azalea-core/Cargo.toml2
-rw-r--r--azalea-crypto/Cargo.toml2
-rw-r--r--[-rwxr-xr-x]azalea-nbt/Cargo.toml2
-rw-r--r--[-rwxr-xr-x]azalea-protocol/Cargo.toml2
-rw-r--r--azalea-registry/Cargo.toml2
-rw-r--r--azalea-world/Cargo.toml2
11 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f3a1793e..9c16d2e3 100755
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -153,7 +153,7 @@ version = "0.1.0"
[[package]]
name = "azalea-buf"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"azalea-buf-macros",
"byteorder",
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index 34fec8f7..b051509d 100755..100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -8,7 +8,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
azalea-crypto = {path = "../azalea-crypto", version = "^0.1.0"}
chrono = {version = "0.4.22", default-features = false}
log = "0.4.17"
diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml
index 3dbc7735..f59187b5 100644
--- a/azalea-block/Cargo.toml
+++ b/azalea-block/Cargo.toml
@@ -11,4 +11,4 @@ version = "0.1.0"
[dependencies]
azalea-block-macros = {path = "./azalea-block-macros", version = "^0.1.0"}
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 27595e40..71b0eb83 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -3,7 +3,7 @@ description = "Serialize and deserialize buffers from Minecraft."
edition = "2021"
license = "MIT"
name = "azalea-buf"
-version = "0.1.0"
+version = "0.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml
index 995d1d6c..4e8512b9 100755..100644
--- a/azalea-chat/Cargo.toml
+++ b/azalea-chat/Cargo.toml
@@ -8,7 +8,7 @@ version = "0.1.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-buf = {path = "../azalea-buf", features = ["serde_json"], version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", features = ["serde_json"], version = "^0.2.0" }
azalea-language = {path = "../azalea-language", version = "^0.1.0"}
lazy_static = "^1.4.0"
serde = "^1.0.130"
diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml
index 52669af5..25626f49 100755..100644
--- a/azalea-core/Cargo.toml
+++ b/azalea-core/Cargo.toml
@@ -8,7 +8,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.1.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"}
uuid = "^1.1.2"
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml
index a5d88ea7..ec0c0ed8 100644
--- a/azalea-crypto/Cargo.toml
+++ b/azalea-crypto/Cargo.toml
@@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies]
aes = "0.8.1"
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
cfb8 = "0.8.1"
num-bigint = "^0.4.3"
rand = {version = "^0.8.4", features = ["getrandom"]}
diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml
index 2179c11d..804b8f5c 100755..100644
--- a/azalea-nbt/Cargo.toml
+++ b/azalea-nbt/Cargo.toml
@@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies]
ahash = "^0.8.0"
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
byteorder = "^1.4.3"
flate2 = "^1.0.23"
num-derive = "^0.3.3"
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 415c0aa9..73487e52 100755..100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -13,7 +13,7 @@ async-recursion = "1.0.0"
azalea-auth = {path = "../azalea-auth", version = "^0.1.0"}
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.1.0"}
azalea-brigadier = {path = "../azalea-brigadier", version = "^0.1.0"}
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.1.1"}
azalea-core = {path = "../azalea-core", optional = true, version = "^0.1.0"}
azalea-crypto = {path = "../azalea-crypto", version = "^0.1.0"}
diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml
index cb199611..3dbb9029 100644
--- a/azalea-registry/Cargo.toml
+++ b/azalea-registry/Cargo.toml
@@ -8,5 +8,5 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
azalea-registry-macros = {path = "./azalea-registry-macros", version = "^0.1.0"}
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index 053c2534..c600c439 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies]
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.1.0"}
-azalea-buf = {path = "../azalea-buf", version = "^0.1.0"}
+azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.1.0"}
azalea-core = {path = "../azalea-core", version = "^0.1.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"}