1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
A collection of Rust crates for making Minecraft bots, clients, and tools. https://azalea.matdoes.dev
Find a file
Kumpelinus 80a1071077 Rename TicksAlive to TicksConnected
* Move component to plugins/tick_counter.rs and add doc comment
2025-07-15 14:30:40 +02:00
.cargo update config_fast_builds 2025-06-09 20:33:06 +12:00
.github remove executable bit from files 2025-04-04 15:56:06 +00:00
azalea let chains are stabilized 2025-06-26 06:48:25 -12:00
azalea-auth put all azalea-* deps in the workspace Cargo.toml 2025-06-16 04:12:22 +04:00
azalea-block 1.21.6 (#215) 2025-06-17 06:49:07 -12:00
azalea-brigadier typos 2025-06-27 14:00:26 -09:00
azalea-buf use workspace deps everywhere 2025-06-16 01:20:37 +01:00
azalea-chat fix: parse int lists in TranslatableComponent with field (#225) 2025-06-18 19:25:15 -05:00
azalea-client Rename TicksAlive to TicksConnected 2025-07-15 14:30:40 +02:00
azalea-core cleanup 2025-06-16 17:08:09 -06:30
azalea-crypto put all azalea-* deps in the workspace Cargo.toml 2025-06-16 04:12:22 +04:00
azalea-entity fix invalid look directions on teleport 2025-06-25 16:10:15 -13:45
azalea-inventory use workspace deps everywhere 2025-06-16 01:20:37 +01:00
azalea-language 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
azalea-physics remove some unused system ordering 2025-06-25 20:06:25 -10:00
azalea-protocol 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
azalea-registry 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
azalea-world typos 2025-06-27 14:00:26 -09:00
codegen 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
.gitignore remove executable bit from files 2025-04-04 15:56:06 +00:00
.gitpod.yml remove executable bit from files 2025-04-04 15:56:06 +00:00
Cargo.lock 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
Cargo.toml 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
CHANGELOG.md fix invalid look directions on teleport 2025-06-25 16:10:15 -13:45
LICENSE.md Create LICENSE.md 2022-10-30 14:49:46 -05:00
README.md 1.21.7 (#227) 2025-06-30 14:14:45 -05:00
rust-toolchain.toml fix for latest nightly by changing the FixedBitSet generic to take bytes instead of bits 2024-12-11 03:25:36 +00:00
rustfmt.toml more formatting fixes 2025-05-30 19:22:09 -08:45

Azalea

docs.rs

A collection of Rust crates for making Minecraft bots, clients, and tools.

Azalea

Currently supported Minecraft version: 1.21.7.

Warning

Azalea is still unfinished, though most crates are in a useable state.

Features

Docs

The "stable" documentation is available at docs.rs/azalea and the unstable docs are at azalea.matdoes.dev (recommended).

Matrix/Discord

If you'd like to chat about Azalea, you can join the Matrix space at #azalea:matdoes.dev (recommended) or the Discord server at discord.gg/FaRey6ytmC (they're bridged so you don't need to join both).

Goals

  • Do everything a vanilla client can do.
  • Be intuitive and easy to use.
  • Make it easy to have many bots working at the same time.
  • Don't trigger anticheats.
  • Support the latest Minecraft version.
  • Be fast and memory efficient.

Non-goals

  • Supporting several versions of Minecraft on the same branch*.
  • Bedrock edition.
  • Graphics.

Real-world bots using Azalea

Here's an incomplete list of bots built using Azalea, primarily intended as a reference in addition to the existing documentation and examples:

You can see more projects built with Azalea in the GitHub dependency graph.

Plugins

Azalea has support for Bevy plugins, which can significantly alter its functionality. Here are some plugins that you may find useful:

If you've created your own plugin for Azalea, please create a PR to add it to this list :).