gitbutler/gitbutler-git/src/prelude.rs

12 lines
215 B
Rust

#[cfg(not(feature = "std"))]
#[allow(unused_imports)]
pub use alloc::{
string::{String, ToString},
vec,
vec::Vec,
};
#[cfg(feature = "std")]
#[allow(unused_imports)]
pub use std::collections::BTreeMap;