diff options
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/Cargo.toml | 6 | ||||
| -rw-r--r-- | bot/src/main.rs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bot/Cargo.toml b/bot/Cargo.toml index f1c89a99..fd6ad067 100644 --- a/bot/Cargo.toml +++ b/bot/Cargo.toml @@ -1,11 +1,11 @@ [package] +edition = "2021" name = "bot" version = "0.1.0" -edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -minecraft-client = { path = "../minecraft-client" } -minecraft-protocol = { path = "../minecraft-protocol" } +azalea-client = {path = "../azalea-client"} +azalea-protocol = {path = "../azalea-protocol"} tokio = "^1.14.0" diff --git a/bot/src/main.rs b/bot/src/main.rs index 19959ce5..9cfd7f9a 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -1,4 +1,4 @@ -use minecraft_client::connect::join_server; +use azalea_client::connect::join_server; use tokio::runtime::Runtime; async fn bot() { |
