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

change it all to azalea-buf-macros

This commit is contained in:
mat 2022-08-29 21:14:42 -05:00
parent ef3ac9f2a0
commit d88d46ca2d
4 changed files with 13 additions and 13 deletions

20
Cargo.lock generated
View file

@ -112,7 +112,7 @@ version = "0.1.0"
name = "azalea-buf"
version = "0.1.0"
dependencies = [
"buf-macros",
"azalea-buf-macros",
"byteorder",
"serde_json",
"thiserror",
@ -120,6 +120,15 @@ dependencies = [
"uuid",
]
[[package]]
name = "azalea-buf-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "azalea-chat"
version = "0.1.0"
@ -301,15 +310,6 @@ dependencies = [
"serde",
]
[[package]]
name = "buf-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "bumpalo"
version = "3.10.0"

View file

@ -6,7 +6,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
buf-macros = {path = "./azalea-buf-macros", version = "0.1.0"}
azalea-buf-macros = {path = "./azalea-buf-macros", version = "0.1.0"}
byteorder = "^1.4.3"
serde_json = {version = "^1.0", optional = true}
thiserror = "^1.0.31"

View file

@ -1,6 +1,6 @@
[package]
edition = "2021"
name = "buf-macros"
name = "azalea-buf-macros"
version = "0.1.0"
[lib]

View file

@ -7,7 +7,7 @@ mod read;
mod serializable_uuid;
mod write;
pub use buf_macros::*;
pub use azalea_buf_macros::*;
pub use definitions::*;
pub use read::{read_varint_async, BufReadError, McBufReadable, McBufVarReadable, Readable};
pub use serializable_uuid::*;