Skip to main content

simi/
prelude.rs

1//! Common imports for the `simi` crate.
2//!
3//! Core modules should `use crate::prelude::*;` instead of importing
4//! individual std types.
5
6pub use std::{
7    boxed::Box,
8    format,
9    string::{String, ToString},
10    vec,
11    vec::Vec,
12};