mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
I do want to enable a few specific lints, yet aggressive-clippy as a whole isn't worthwhile.
14 lines
263 B
Rust
14 lines
263 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![doc = include_str!("../README.md")]
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
pub extern crate alloc;
|
|
|
|
pub mod sync;
|
|
pub mod collections;
|
|
pub mod io;
|
|
|
|
pub use alloc::vec;
|
|
pub use alloc::str;
|
|
pub use alloc::string;
|