diff options
| author | mat <git@matdoes.dev> | 2025-02-02 21:17:28 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-02-02 21:17:28 +0000 |
| commit | 8d110a9f7c568fd52fc6c213d707206287311319 (patch) | |
| tree | 6dfed16120460fd726a09a779c5a1387cfa0baf1 /azalea-protocol | |
| parent | b08d3d55d7351eff6e27a09d732078c038539958 (diff) | |
| download | azalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz | |
cleanup, fix warnings
Diffstat (limited to 'azalea-protocol')
| -rw-r--r-- | azalea-protocol/Cargo.toml | 38 | ||||
| -rw-r--r-- | azalea-protocol/azalea-protocol-macros/Cargo.toml | 14 |
2 files changed, 26 insertions, 26 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 202bd08a..e81beea6 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "azalea-protocol" description = "Send and receive Minecraft packets." -version = { workspace = true } -edition = { workspace = true } -license = { workspace = true } -repository = { workspace = true } +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true [dev-dependencies] -anyhow = { workspace = true } -tracing = { workspace = true } -tracing-subscriber = { workspace = true } +anyhow.workspace = true +tracing.workspace = true +tracing-subscriber.workspace = true [dependencies] -async-recursion = { workspace = true } +async-recursion.workspace = true azalea-auth = { path = "../azalea-auth", version = "0.11.0" } azalea-block = { path = "../azalea-block", version = "0.11.0", default-features = false } azalea-brigadier = { path = "../azalea-brigadier", version = "0.11.0", features = [ @@ -32,22 +32,22 @@ azalea-inventory = { path = "../azalea-inventory", version = "0.11.0" } azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.11.0" } azalea-registry = { path = "../azalea-registry", version = "0.11.0" } azalea-world = { path = "../azalea-world", version = "0.11.0" } -bevy_ecs = { workspace = true } -# byteorder = { workspace = true } -flate2 = { workspace = true } -futures = { workspace = true } -futures-lite = { workspace = true } -# futures-util = { workspace = true } +bevy_ecs.workspace = true +# byteorder.workspace = true +flate2.workspace = true +futures.workspace = true +futures-lite.workspace = true +# futures-util.workspace = true serde = { workspace = true, features = ["serde_derive"] } -serde_json = { workspace = true } -simdnbt = { workspace = true } +serde_json.workspace = true +simdnbt.workspace = true socks5-impl = { workspace = true, features = ["client"] } -thiserror = { workspace = true } +thiserror.workspace = true tokio = { workspace = true, features = ["io-util", "net", "macros"] } tokio-util = { workspace = true, features = ["codec"] } -tracing = { workspace = true } +tracing.workspace = true hickory-resolver = { workspace = true, features = ["tokio-runtime"] } -uuid = { workspace = true } +uuid.workspace = true [features] connecting = [] diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml index 5f54fc37..100c4817 100644 --- a/azalea-protocol/azalea-protocol-macros/Cargo.toml +++ b/azalea-protocol/azalea-protocol-macros/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "azalea-protocol-macros" description = "Macros internally used in azalea-protocol." -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 } -syn = { workspace = true } +proc-macro2.workspace = true +quote.workspace = true +syn.workspace = true |
