mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
add "repository" field to all crates
This commit is contained in:
parent
f0e9a48222
commit
889f742696
19 changed files with 37 additions and 18 deletions
|
@ -3,23 +3,24 @@ description = "A port of Mojang's Authlib and launcher authentication."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-auth"
|
name = "azalea-auth"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-auth"
|
||||||
version = "0.2.2"
|
version = "0.2.2"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf = { path = "../azalea-buf", version = "^0.2.0" }
|
azalea-buf = {path = "../azalea-buf", version = "^0.2.0"}
|
||||||
azalea-crypto = { path = "../azalea-crypto", version = "^0.2.0" }
|
azalea-crypto = {path = "../azalea-crypto", version = "^0.2.0"}
|
||||||
chrono = { version = "0.4.22", default-features = false }
|
chrono = {version = "0.4.22", default-features = false}
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
num-bigint = "0.4.3"
|
num-bigint = "0.4.3"
|
||||||
reqwest = { version = "0.11.12", features = ["json"] }
|
reqwest = {version = "0.11.12", features = ["json"]}
|
||||||
serde = { version = "1.0.145", features = ["derive"] }
|
serde = {version = "1.0.145", features = ["derive"]}
|
||||||
serde_json = "1.0.86"
|
serde_json = "1.0.86"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
tokio = { version = "1.21.2", features = ["fs"] }
|
tokio = {version = "1.21.2", features = ["fs"]}
|
||||||
uuid = "^1.1.2"
|
uuid = "^1.1.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.9.1"
|
env_logger = "0.9.1"
|
||||||
tokio = { version = "1.21.2", features = ["full"] }
|
tokio = {version = "1.21.2", features = ["full"]}
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "Representation of Minecraft block states."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-block"
|
name = "azalea-block"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[lib]
|
[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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block-macros = {path = "./azalea-block-macros", version = "^0.2.0" }
|
azalea-block-macros = {path = "./azalea-block-macros", version = "^0.2.0"}
|
||||||
azalea-buf = {path = "../azalea-buf", version = "^0.2.0" }
|
azalea-buf = {path = "../azalea-buf", version = "^0.2.0"}
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "Proc macros used by azalea-block."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-block-macros"
|
name = "azalea-block-macros"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block/azalea-block-macros"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "A port of Mojang's Brigadier command parsing and dispatching libr
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-brigadier"
|
name = "azalea-brigadier"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-brigadier"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
@ -3,12 +3,13 @@ description = "Serialize and deserialize buffers from Minecraft."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-buf"
|
name = "azalea-buf"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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"
|
byteorder = "^1.4.3"
|
||||||
serde_json = {version = "^1.0", optional = true}
|
serde_json = {version = "^1.0", optional = true}
|
||||||
thiserror = "^1.0.34"
|
thiserror = "^1.0.34"
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "#[derive(McBuf)]"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-buf-macros"
|
name = "azalea-buf-macros"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-chat"
|
name = "azalea-chat"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-client"
|
name = "azalea-client"
|
||||||
version = "0.2.2"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-core"
|
name = "azalea-core"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-crypto"
|
name = "azalea-crypto"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-language"
|
name = "azalea-language"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-nbt"
|
name = "azalea-nbt"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-physics"
|
name = "azalea-physics"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-protocol"
|
name = "azalea-protocol"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-protocol-macros"
|
name = "azalea-protocol-macros"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-protocol/azalea-protocol-macros"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-registry"
|
name = "azalea-registry"
|
||||||
version = "0.2.0"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "Macros internally used in azalea-registry."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-registry-macros"
|
name = "azalea-registry-macros"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry/azalea-registry-macros"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -3,17 +3,18 @@ description = "The Minecraft world representation used in Azalea."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea-world"
|
name = "azalea-world"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-world"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block = {path = "../azalea-block", default-features = false, 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-buf = {path = "../azalea-buf", version = "^0.2.0"}
|
||||||
azalea-chat = {path = "../azalea-chat", version = "^0.2.0" }
|
azalea-chat = {path = "../azalea-chat", version = "^0.2.0"}
|
||||||
azalea-core = {path = "../azalea-core", version = "^0.2.0" }
|
azalea-core = {path = "../azalea-core", version = "^0.2.0"}
|
||||||
azalea-nbt = {path = "../azalea-nbt", version = "^0.2.0" }
|
azalea-nbt = {path = "../azalea-nbt", version = "^0.2.0"}
|
||||||
azalea-registry = {path = "../azalea-registry", version = "^0.2.0" }
|
azalea-registry = {path = "../azalea-registry", version = "^0.2.0"}
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.34"
|
||||||
|
|
|
@ -3,6 +3,7 @@ description = "A framework for creating Minecraft bots."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "azalea"
|
name = "azalea"
|
||||||
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea"
|
||||||
version = "0.2.4"
|
version = "0.2.4"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# 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]
|
[dependencies]
|
||||||
anyhow = "^1.0.65"
|
anyhow = "^1.0.65"
|
||||||
async-trait = "^0.1.57"
|
async-trait = "^0.1.57"
|
||||||
azalea-client = { version = "0.2.2", path = "../azalea-client" }
|
azalea-client = {version = "0.2.2", path = "../azalea-client"}
|
||||||
azalea-protocol = { version = "0.2.0", path = "../azalea-protocol" }
|
azalea-protocol = {version = "0.2.0", path = "../azalea-protocol"}
|
||||||
parking_lot = "^0.12.1"
|
parking_lot = "^0.12.1"
|
||||||
thiserror = "^1.0.37"
|
thiserror = "^1.0.37"
|
||||||
tokio = "^1.21.1"
|
tokio = "^1.21.1"
|
||||||
|
|
Loading…
Add table
Reference in a new issue