1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

change versions and stuff

This commit is contained in:
Ubuntu 2022-10-17 14:37:05 +00:00
parent 46cd093ead
commit 3f7fb41255
3 changed files with 8 additions and 6 deletions

View file

@ -3,7 +3,8 @@ description = "A headless Minecraft client."
edition = "2021"
license = "MIT"
name = "azalea-client"
version = "0.2.0"
version = "0.1.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -8,9 +8,9 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = {path = "../azalea-block", version = "^0.1.0"}
azalea-core = {path = "../azalea-core", version = "^0.1.0"}
azalea-world = {path = "../azalea-world", version = "^0.1.0"}
azalea-block = { path = "../azalea-block", version = "^0.1.0" }
azalea-core = { path = "../azalea-core", version = "^0.1.0" }
azalea-world = { path = "../azalea-world", version = "^0.1.0" }
lazy_static = "1.4.0"
[dev-dependencies]

View file

@ -4,14 +4,15 @@ edition = "2021"
license = "MIT"
name = "azalea"
version = "0.1.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "^1.0.65"
async-trait = "^0.1.57"
azalea-client = {version = "0.1.0", path = "../azalea-client"}
azalea-protocol = {version = "0.1.0", path = "../azalea-protocol"}
azalea-client = { version = "0.1.0", path = "../azalea-client" }
azalea-protocol = { version = "0.1.0", path = "../azalea-protocol" }
parking_lot = "^0.12.1"
thiserror = "^1.0.37"
tokio = "^1.21.1"