diff --git a/crates/stdext/src/lib.rs b/crates/stdext/src/lib.rs index c85378bb73e..860b6ad563e 100644 --- a/crates/stdext/src/lib.rs +++ b/crates/stdext/src/lib.rs @@ -3,6 +3,12 @@ //! Arena allocators. Small and fast. +#![cfg_attr( + target_arch = "loongarch64", + feature(stdarch_loongarch), + allow(clippy::incompatible_msrv) +)] + pub mod alloc; pub mod arena; pub mod collections;