aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xCargo.lock20
-rw-r--r--azalea-buf/Cargo.toml2
-rw-r--r--azalea-buf/azalea-buf-macros/Cargo.toml2
-rw-r--r--azalea-buf/src/lib.rs2
4 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 97bcb5b3..128056ce 100755
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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",
@@ -121,6 +121,15 @@ dependencies = [
]
[[package]]
+name = "azalea-buf-macros"
+version = "0.1.0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "azalea-chat"
version = "0.1.0"
dependencies = [
@@ -302,15 +311,6 @@ dependencies = [
]
[[package]]
-name = "buf-macros"
-version = "0.1.0"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
name = "bumpalo"
version = "3.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index fe4d1aa4..51b9c2fe 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -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"
diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml
index 64e9a228..95e956de 100644
--- a/azalea-buf/azalea-buf-macros/Cargo.toml
+++ b/azalea-buf/azalea-buf-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
edition = "2021"
-name = "buf-macros"
+name = "azalea-buf-macros"
version = "0.1.0"
[lib]
diff --git a/azalea-buf/src/lib.rs b/azalea-buf/src/lib.rs
index 7860325e..b8190dfb 100644
--- a/azalea-buf/src/lib.rs
+++ b/azalea-buf/src/lib.rs
@@ -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::*;