Unnamed repository; edit this file 'description' to name the repository.
Swap
| -rw-r--r-- | crates/stdx/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/stdx/src/lib.rs b/crates/stdx/src/lib.rs index 5ec6e0751a..5639aaf57c 100644 --- a/crates/stdx/src/lib.rs +++ b/crates/stdx/src/lib.rs @@ -7,11 +7,11 @@ use std::process::Command; use std::{cmp::Ordering, ops, time::Instant}; mod macros; +pub mod hash; pub mod process; pub mod panic_context; pub mod non_empty_vec; pub mod rand; -pub mod hash; pub use always_assert::{always, never}; |