diff options
| author | Ubuntu <github@matdoes.dev> | 2022-10-17 14:37:05 +0000 |
|---|---|---|
| committer | Ubuntu <github@matdoes.dev> | 2022-10-17 14:37:05 +0000 |
| commit | 3f7fb41255bd7895f98373a0711a9a342e304b00 (patch) | |
| tree | 2605539abfce9de14098637428bf136144fbbd2e | |
| parent | 46cd093eaddcd3165eb5e89d60e23f960712729e (diff) | |
| download | azalea-drasl-3f7fb41255bd7895f98373a0711a9a342e304b00.tar.xz | |
change versions and stuff
| -rwxr-xr-x | azalea-client/Cargo.toml | 3 | ||||
| -rw-r--r-- | azalea-physics/Cargo.toml | 6 | ||||
| -rw-r--r-- | azalea/Cargo.toml | 5 |
3 files changed, 8 insertions, 6 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index 5956fe89..ba93aa25 100755 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -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 diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml index 8d18d391..b79fe51f 100644 --- a/azalea-physics/Cargo.toml +++ b/azalea-physics/Cargo.toml @@ -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] diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index 0f8fb4c9..eca46e16 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -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" |
