mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-24 10:02:26 +03:00
12 lines
215 B
Rust
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;
|