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

Release independent packages

Generated by cargo-workspaces
This commit is contained in:
mat 2023-09-14 18:59:01 -05:00
parent 90d6b0acea
commit d850f5988a
4 changed files with 9 additions and 6 deletions

View file

@ -4,12 +4,12 @@ edition = "2021"
license = "MIT"
name = "azalea-buf"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
version = "0.7.0"
version = "0.8.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf-macros = { path = "./azalea-buf-macros", version = "^0.7.0" }
azalea-buf-macros = { path = "./azalea-buf-macros", version = "^0.8.0" }
byteorder = "^1.4.3"
log = "0.4.20"
serde_json = { version = "^1.0", optional = true }

View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-buf-macros"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
version = "0.7.0"
version = "0.8.0"
[lib]
proc-macro = true

View file

@ -1,7 +1,10 @@
[package]
name = "azalea-entity"
version = "0.1.0"
version = "0.8.0"
edition = "2021"
description = "Things related to Minecraft entities used by Azalea"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-entity"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -3,13 +3,13 @@ description = "A fast NBT serializer and deserializer."
edition = "2021"
license = "MIT"
name = "azalea-nbt"
version = "0.7.0"
version = "0.8.0"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-nbt"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
azalea-buf = { path = "../azalea-buf", version = "^0.8.0" }
byteorder = "^1.4.3"
compact_str = { version = "0.7.1", features = ["serde"] }
enum-as-inner = "0.6.0"