diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2025-12-27 22:02:00 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-27 22:02:00 -0600 |
| commit | 9513f42e87f64c409cdb2a100500a50e5a713bac (patch) | |
| tree | bb6aa8b6d50fddf967bcb1f759e023754ea84e49 /azalea-world | |
| parent | 588902ba4a3965982bdd84d92b20c6f7613f3978 (diff) | |
| download | azalea-drasl-9513f42e87f64c409cdb2a100500a50e5a713bac.tar.xz | |
Move Client struct to azalea crate (#297)
* move the Client struct out of azalea-client into azalea
* actually add client impls in azalea
Diffstat (limited to 'azalea-world')
| -rw-r--r-- | azalea-world/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-world/src/find_blocks.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index 5df028b8..31e42a80 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true repository.workspace = true [dev-dependencies] -azalea-client.path = "../azalea-client" +azalea.path = "../azalea" criterion.workspace = true [dependencies] diff --git a/azalea-world/src/find_blocks.rs b/azalea-world/src/find_blocks.rs index 5edf3ea2..bd4ec09a 100644 --- a/azalea-world/src/find_blocks.rs +++ b/azalea-world/src/find_blocks.rs @@ -11,7 +11,7 @@ impl Instance { /// /// ``` /// # use azalea_registry::builtin::BlockKind; - /// # fn example(client: &azalea_client::Client) { + /// # fn example(client: &azalea::Client) { /// client /// .world() /// .read() |
