1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

(cargo-release) version 0.2.0

This commit is contained in:
Ubuntu 2022-10-17 16:28:51 +00:00
parent 560805bc2c
commit 46fbc4654c
11 changed files with 11 additions and 11 deletions

2
Cargo.lock generated
View file

@ -153,7 +153,7 @@ version = "0.1.0"
[[package]] [[package]]
name = "azalea-buf" name = "azalea-buf"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"azalea-buf-macros", "azalea-buf-macros",
"byteorder", "byteorder",

2
azalea-auth/Cargo.toml Executable file → Normal file
View file

@ -8,7 +8,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [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"} azalea-crypto = {path = "../azalea-crypto", version = "^0.1.0"}
chrono = {version = "0.4.22", default-features = false} chrono = {version = "0.4.22", default-features = false}
log = "0.4.17" log = "0.4.17"

View file

@ -11,4 +11,4 @@ version = "0.1.0"
[dependencies] [dependencies]
azalea-block-macros = {path = "./azalea-block-macros", version = "^0.1.0"} 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" }

View file

@ -3,7 +3,7 @@ description = "Serialize and deserialize buffers from Minecraft."
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "azalea-buf" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

2
azalea-chat/Cargo.toml Executable file → Normal file
View file

@ -8,7 +8,7 @@ version = "0.1.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [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"} azalea-language = {path = "../azalea-language", version = "^0.1.0"}
lazy_static = "^1.4.0" lazy_static = "^1.4.0"
serde = "^1.0.130" serde = "^1.0.130"

2
azalea-core/Cargo.toml Executable file → Normal file
View file

@ -8,7 +8,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [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-chat = {path = "../azalea-chat", version = "^0.1.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"} azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"}
uuid = "^1.1.2" uuid = "^1.1.2"

View file

@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies] [dependencies]
aes = "0.8.1" 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" cfb8 = "0.8.1"
num-bigint = "^0.4.3" num-bigint = "^0.4.3"
rand = {version = "^0.8.4", features = ["getrandom"]} rand = {version = "^0.8.4", features = ["getrandom"]}

2
azalea-nbt/Cargo.toml Executable file → Normal file
View file

@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies] [dependencies]
ahash = "^0.8.0" 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" byteorder = "^1.4.3"
flate2 = "^1.0.23" flate2 = "^1.0.23"
num-derive = "^0.3.3" num-derive = "^0.3.3"

2
azalea-protocol/Cargo.toml Executable file → Normal file
View file

@ -13,7 +13,7 @@ async-recursion = "1.0.0"
azalea-auth = {path = "../azalea-auth", version = "^0.1.0"} azalea-auth = {path = "../azalea-auth", version = "^0.1.0"}
azalea-block = {path = "../azalea-block", default-features = false, 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-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-chat = {path = "../azalea-chat", version = "^0.1.1"}
azalea-core = {path = "../azalea-core", optional = true, version = "^0.1.0"} azalea-core = {path = "../azalea-core", optional = true, version = "^0.1.0"}
azalea-crypto = {path = "../azalea-crypto", version = "^0.1.0"} azalea-crypto = {path = "../azalea-crypto", version = "^0.1.0"}

View file

@ -8,5 +8,5 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [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"} azalea-registry-macros = {path = "./azalea-registry-macros", version = "^0.1.0"}

View file

@ -9,7 +9,7 @@ version = "0.1.0"
[dependencies] [dependencies]
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.1.0"} 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-chat = {path = "../azalea-chat", version = "^0.1.0"}
azalea-core = {path = "../azalea-core", version = "^0.1.0"} azalea-core = {path = "../azalea-core", version = "^0.1.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"} azalea-nbt = {path = "../azalea-nbt", version = "^0.1.0"}