Skip to content

Commit

Permalink
Fix compile failure in hashing
Browse files Browse the repository at this point in the history
  • Loading branch information
Veritius committed Apr 4, 2024
1 parent 5e6b8f8 commit 59542b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stardust/src/hashing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
mod stablehash;
mod resource;

use bevy_app::prelude::*;
use bevy::prelude::*;

pub(crate) use resource::{PendingHashValues, finalise_hasher_system};

Expand All @@ -12,7 +12,7 @@ pub use resource::ProtocolConfigHash;

mod sealed {
pub trait Sealed {}
impl Sealed for bevy_app::App {}
impl Sealed for bevy::app::App {}
}

/// Extends Bevy's `App` to add methods for generating the [ProtocolId].
Expand Down
2 changes: 1 addition & 1 deletion stardust/src/hashing/resource.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::hash::Hasher;
use bevy_ecs::prelude::*;
use bevy::prelude::*;
use gxhash::GxHasher;
use super::stablehash::STABLE_HASHER_SEED;

Expand Down

0 comments on commit 59542b7

Please sign in to comment.