From 889f7426961eaa56bd4507aa5bd28cd9b26fd2ed Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 30 Oct 2022 14:03:13 -0500 Subject: [PATCH] add "repository" field to all crates --- azalea-auth/Cargo.toml | 15 ++++++++------- azalea-block/Cargo.toml | 5 +++-- azalea-block/azalea-block-macros/Cargo.toml | 1 + azalea-brigadier/Cargo.toml | 1 + azalea-buf/Cargo.toml | 3 ++- azalea-buf/azalea-buf-macros/Cargo.toml | 1 + azalea-chat/Cargo.toml | 1 + azalea-client/Cargo.toml | 1 + azalea-core/Cargo.toml | 1 + azalea-crypto/Cargo.toml | 1 + azalea-language/Cargo.toml | 1 + azalea-nbt/Cargo.toml | 1 + azalea-physics/Cargo.toml | 1 + azalea-protocol/Cargo.toml | 1 + azalea-protocol/azalea-protocol-macros/Cargo.toml | 1 + azalea-registry/Cargo.toml | 1 + azalea-registry/azalea-registry-macros/Cargo.toml | 1 + azalea-world/Cargo.toml | 13 +++++++------ azalea/Cargo.toml | 5 +++-- 19 files changed, 37 insertions(+), 18 deletions(-) diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index 4e26e6e4..4199ad3c 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -3,23 +3,24 @@ description = "A port of Mojang's Authlib and launcher authentication." edition = "2021" license = "MIT" name = "azalea-auth" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-auth" version = "0.2.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -azalea-buf = { path = "../azalea-buf", version = "^0.2.0" } -azalea-crypto = { path = "../azalea-crypto", version = "^0.2.0" } -chrono = { version = "0.4.22", default-features = false } +azalea-buf = {path = "../azalea-buf", version = "^0.2.0"} +azalea-crypto = {path = "../azalea-crypto", version = "^0.2.0"} +chrono = {version = "0.4.22", default-features = false} log = "0.4.17" num-bigint = "0.4.3" -reqwest = { version = "0.11.12", features = ["json"] } -serde = { version = "1.0.145", features = ["derive"] } +reqwest = {version = "0.11.12", features = ["json"]} +serde = {version = "1.0.145", features = ["derive"]} serde_json = "1.0.86" thiserror = "1.0.37" -tokio = { version = "1.21.2", features = ["fs"] } +tokio = {version = "1.21.2", features = ["fs"]} uuid = "^1.1.2" [dev-dependencies] env_logger = "0.9.1" -tokio = { version = "1.21.2", features = ["full"] } +tokio = {version = "1.21.2", features = ["full"]} diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml index f964713e..26d30ec8 100644 --- a/azalea-block/Cargo.toml +++ b/azalea-block/Cargo.toml @@ -3,6 +3,7 @@ description = "Representation of Minecraft block states." edition = "2021" license = "MIT" name = "azalea-block" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-block" version = "0.2.0" [lib] @@ -10,5 +11,5 @@ version = "0.2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -azalea-block-macros = {path = "./azalea-block-macros", version = "^0.2.0" } -azalea-buf = {path = "../azalea-buf", version = "^0.2.0" } +azalea-block-macros = {path = "./azalea-block-macros", version = "^0.2.0"} +azalea-buf = {path = "../azalea-buf", version = "^0.2.0"} diff --git a/azalea-block/azalea-block-macros/Cargo.toml b/azalea-block/azalea-block-macros/Cargo.toml index d208dc99..c1e66f62 100644 --- a/azalea-block/azalea-block-macros/Cargo.toml +++ b/azalea-block/azalea-block-macros/Cargo.toml @@ -3,6 +3,7 @@ description = "Proc macros used by azalea-block." edition = "2021" license = "MIT" name = "azalea-block-macros" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-block/azalea-block-macros" version = "0.2.0" [lib] diff --git a/azalea-brigadier/Cargo.toml b/azalea-brigadier/Cargo.toml index f078cbef..c959b0f5 100644 --- a/azalea-brigadier/Cargo.toml +++ b/azalea-brigadier/Cargo.toml @@ -3,6 +3,7 @@ description = "A port of Mojang's Brigadier command parsing and dispatching libr edition = "2021" license = "MIT" name = "azalea-brigadier" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-brigadier" version = "0.2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index 71b0eb83..7011610e 100644 --- a/azalea-buf/Cargo.toml +++ b/azalea-buf/Cargo.toml @@ -3,12 +3,13 @@ description = "Serialize and deserialize buffers from Minecraft." edition = "2021" license = "MIT" name = "azalea-buf" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf" version = "0.2.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.2.0" } +azalea-buf-macros = {path = "./azalea-buf-macros", version = "^0.2.0"} byteorder = "^1.4.3" serde_json = {version = "^1.0", optional = true} thiserror = "^1.0.34" diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml index 1ca72c57..26ed3329 100644 --- a/azalea-buf/azalea-buf-macros/Cargo.toml +++ b/azalea-buf/azalea-buf-macros/Cargo.toml @@ -3,6 +3,7 @@ description = "#[derive(McBuf)]" edition = "2021" license = "MIT" name = "azalea-buf-macros" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf" version = "0.2.0" [lib] diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml index 8fd77e96..60460053 100644 --- a/azalea-chat/Cargo.toml +++ b/azalea-chat/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-chat" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-chat" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index 84df872a..910d1376 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-client" version = "0.2.2" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-client" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index dec1e61e..775b481a 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-core" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-core" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml index 50ea7358..68930c23 100644 --- a/azalea-crypto/Cargo.toml +++ b/azalea-crypto/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-crypto" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-crypto" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-language/Cargo.toml b/azalea-language/Cargo.toml index f1902c05..bbb0e87b 100644 --- a/azalea-language/Cargo.toml +++ b/azalea-language/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-language" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-language" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml index 5ad2b943..89e14072 100644 --- a/azalea-nbt/Cargo.toml +++ b/azalea-nbt/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-nbt" version = "0.2.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 diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml index d40fe3e7..fdaf7889 100644 --- a/azalea-physics/Cargo.toml +++ b/azalea-physics/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-physics" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-physics" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 009c1344..0f4d5d36 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-protocol" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-protocol" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml index 7b1e200f..9a70b820 100644 --- a/azalea-protocol/azalea-protocol-macros/Cargo.toml +++ b/azalea-protocol/azalea-protocol-macros/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-protocol-macros" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-protocol/azalea-protocol-macros" [lib] proc-macro = true diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml index 82be0bb2..52bbd453 100644 --- a/azalea-registry/Cargo.toml +++ b/azalea-registry/Cargo.toml @@ -4,6 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-registry" version = "0.2.0" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml index a068158f..6ba5da92 100644 --- a/azalea-registry/azalea-registry-macros/Cargo.toml +++ b/azalea-registry/azalea-registry-macros/Cargo.toml @@ -3,6 +3,7 @@ description = "Macros internally used in azalea-registry." edition = "2021" license = "MIT" name = "azalea-registry-macros" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry/azalea-registry-macros" version = "0.2.0" [lib] diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index fd42e621..c052f89f 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -3,17 +3,18 @@ description = "The Minecraft world representation used in Azalea." edition = "2021" license = "MIT" name = "azalea-world" +repository = "https://github.com/mat-1/azalea/tree/main/azalea-world" version = "0.2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -azalea-block = {path = "../azalea-block", default-features = false, version = "^0.2.0" } -azalea-buf = {path = "../azalea-buf", version = "^0.2.0" } -azalea-chat = {path = "../azalea-chat", version = "^0.2.0" } -azalea-core = {path = "../azalea-core", version = "^0.2.0" } -azalea-nbt = {path = "../azalea-nbt", version = "^0.2.0" } -azalea-registry = {path = "../azalea-registry", version = "^0.2.0" } +azalea-block = {path = "../azalea-block", default-features = false, version = "^0.2.0"} +azalea-buf = {path = "../azalea-buf", version = "^0.2.0"} +azalea-chat = {path = "../azalea-chat", version = "^0.2.0"} +azalea-core = {path = "../azalea-core", version = "^0.2.0"} +azalea-nbt = {path = "../azalea-nbt", version = "^0.2.0"} +azalea-registry = {path = "../azalea-registry", version = "^0.2.0"} log = "0.4.17" nohash-hasher = "0.2.0" thiserror = "1.0.34" diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index e86dbde4..a456d1ea 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -3,6 +3,7 @@ description = "A framework for creating Minecraft bots." edition = "2021" license = "MIT" name = "azalea" +repository = "https://github.com/mat-1/azalea/tree/main/azalea" version = "0.2.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,8 +11,8 @@ version = "0.2.4" [dependencies] anyhow = "^1.0.65" async-trait = "^0.1.57" -azalea-client = { version = "0.2.2", path = "../azalea-client" } -azalea-protocol = { version = "0.2.0", path = "../azalea-protocol" } +azalea-client = {version = "0.2.2", path = "../azalea-client"} +azalea-protocol = {version = "0.2.0", path = "../azalea-protocol"} parking_lot = "^0.12.1" thiserror = "^1.0.37" tokio = "^1.21.1"