diff options
| author | mat <git@matdoes.dev> | 2024-01-08 21:15:12 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-01-08 21:15:12 -0600 |
| commit | fd1c99e74a8a89278522d1d9f9e4493e7a0c0193 (patch) | |
| tree | f8bc59128f10c21bc0d41fbfde88e1a0e0ae6e87 /azalea | |
| parent | 42f49c58edc0782622e15d738b90db771e44a142 (diff) | |
| download | azalea-drasl-fd1c99e74a8a89278522d1d9f9e4493e7a0c0193.tar.xz | |
upgrade deps
Diffstat (limited to 'azalea')
| -rw-r--r-- | azalea/Cargo.toml | 12 | ||||
| -rw-r--r-- | azalea/examples/testbot/main.rs | 1 |
2 files changed, 6 insertions, 7 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index affbeab6..e6143388 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -12,8 +12,8 @@ pre-release-replacements = [ ] [dependencies] -anyhow = "^1.0.75" -async-trait = "0.1.74" +anyhow = "^1.0.79" +async-trait = "0.1.77" azalea-block = { version = "0.9.0", path = "../azalea-block" } azalea-chat = { version = "0.9.0", path = "../azalea-chat" } azalea-client = { version = "0.9.0", path = "../azalea-client", default-features = false } @@ -30,15 +30,15 @@ bevy_app = "0.12.1" bevy_ecs = "0.12.1" bevy_tasks = { version = "0.12.1", features = ["multi-threaded"] } derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } -futures = "0.3.29" -futures-lite = "2.1.0" +futures = "0.3.30" +futures-lite = "2.2.0" tracing = "0.1.40" nohash-hasher = "0.2.0" num-traits = "0.2.17" parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } priority-queue = "1.3.2" -thiserror = "^1.0.50" -tokio = "^1.34.0" +thiserror = "^1.0.56" +tokio = "^1.35.1" uuid = "1.6.1" bevy_log = "0.12.1" azalea-entity = { version = "0.9.0", path = "../azalea-entity" } diff --git a/azalea/examples/testbot/main.rs b/azalea/examples/testbot/main.rs index baa078d7..c3bc93f7 100644 --- a/azalea/examples/testbot/main.rs +++ b/azalea/examples/testbot/main.rs @@ -123,7 +123,6 @@ async fn handle(bot: Client, event: azalea::Event, state: State) -> anyhow::Resu .insert(PathfinderDebugParticles); } } - azalea::Event::Login => {} azalea::Event::Chat(chat) => { let (Some(username), content) = chat.split_sender_and_content() else { return Ok(()); |
