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

minor readme fixes

This commit is contained in:
mat 2025-04-15 17:30:56 -10:00
parent 66174fc7d4
commit b828bc2b12
2 changed files with 3 additions and 3 deletions

View file

@ -24,6 +24,7 @@ _Currently supported Minecraft version: `1.21.5`._
- [Block interactions & building](https://azalea.matdoes.dev/azalea/struct.Client.html#method.block_interact) (this doesn't predict the block interactions/placement on the client yet but it's usually fine)
- [Inventories](https://azalea.matdoes.dev/azalea/struct.Client.html#impl-ContainerClientExt-for-Client)
- [Attacking entities](https://azalea.matdoes.dev/azalea/struct.Client.html#method.attack) (but you can't get the entity at the crosshair yet)
- [Plugins system](#plugins)
## Docs

View file

@ -9,13 +9,12 @@ First, install Rust nightly with `rustup install nightly` and `rustup default ni
Then, use one of the following commands to add Azalea to your project:
- Latest bleeding-edge version (recommended): `cargo add azalea --git=https://github.com/azalea-rs/azalea`\
- Latest bleeding-edge version (recommended): `cargo add azalea --git=https://github.com/azalea-rs/azalea`
- Latest "stable" release: `cargo add azalea`
## Optimization
For faster compile times, make a `.cargo/config.toml` file in your project
and copy
For faster compile times, create a `.cargo/config.toml` file in your project and copy
[this file](https://github.com/azalea-rs/azalea/blob/main/.cargo/config_fast_builds)
into it. You may have to install the LLD linker.