mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-11 05:14:41 +00:00
93b1656f86
I do want to enable a few specific lints, yet aggressive-clippy as a whole isn't worthwhile.
13 lines
263 B
Rust
13 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;
|