diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2026-01-12 02:09:41 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-12 02:09:41 -0600 |
| commit | 1accbac964168af5fa0d87cb170389f0a9d01363 (patch) | |
| tree | 1509b26c19beaa23a492289f6bf00d3958be44d5 /azalea-core/src/lib.rs | |
| parent | 58339b9d229592dee40e15b8648fe4075cc391f4 (diff) | |
| download | azalea-drasl-1accbac964168af5fa0d87cb170389f0a9d01363.tar.xz | |
Make Bevy dependencies optional in azalea-protocol (#303)
* Make Bevy dependencies optional in azalea-protocol
* derive serde traits on Direction again
* update docs for types that may not have Component
Diffstat (limited to 'azalea-core/src/lib.rs')
| -rw-r--r-- | azalea-core/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs index d61690aa..e07f9d88 100644 --- a/azalea-core/src/lib.rs +++ b/azalea-core/src/lib.rs @@ -5,20 +5,26 @@ pub mod aabb; pub mod attribute_modifier_operation; pub mod bitset; +#[cfg(feature = "serde")] pub mod checksum; +#[cfg(feature = "serde")] pub mod codec_utils; pub mod color; pub mod cursor3d; +#[cfg(feature = "serde")] pub mod data_registry; pub mod delta; pub mod difficulty; pub mod direction; +pub mod entity_id; pub mod filterable; pub mod game_type; +pub mod heightmap_kind; pub mod hit_result; pub mod math; pub mod objectives; pub mod position; +#[cfg(feature = "serde")] pub mod registry_holder; #[doc(hidden)] pub mod resource_location { |
