aboutsummaryrefslogtreecommitdiff
path: root/azalea-buf
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-02-02 21:17:28 +0000
committermat <git@matdoes.dev>2025-02-02 21:17:28 +0000
commit8d110a9f7c568fd52fc6c213d707206287311319 (patch)
tree6dfed16120460fd726a09a779c5a1387cfa0baf1 /azalea-buf
parentb08d3d55d7351eff6e27a09d732078c038539958 (diff)
downloadazalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz
cleanup, fix warnings
Diffstat (limited to 'azalea-buf')
-rw-r--r--azalea-buf/Cargo.toml18
-rw-r--r--azalea-buf/azalea-buf-macros/Cargo.toml12
2 files changed, 15 insertions, 15 deletions
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 300d08a5..d8a36044 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -1,19 +1,19 @@
[package]
name = "azalea-buf"
description = "Serialize and deserialize buffers from Minecraft."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.11.0" }
-byteorder = { workspace = true }
+byteorder.workspace = true
serde_json = { workspace = true, optional = true }
-simdnbt = { workspace = true }
-thiserror = { workspace = true }
-tracing = { workspace = true }
-uuid = { workspace = true }
+simdnbt.workspace = true
+thiserror.workspace = true
+tracing.workspace = true
+uuid.workspace = true
[features]
serde_json = ["dep:serde_json"]
diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml
index 0400e77e..2ed935c4 100644
--- a/azalea-buf/azalea-buf-macros/Cargo.toml
+++ b/azalea-buf/azalea-buf-macros/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "azalea-buf-macros"
description = "#[derive(AzBuf)]"
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-proc-macro2 = { workspace = true }
-quote = { workspace = true }
+proc-macro2.workspace = true
+quote.workspace = true
syn = { workspace = true, features = ["extra-traits"] }