cosmic-text/src/font/system/mod.rs

10 lines
175 B
Rust
Raw Normal View History

2022-11-08 08:43:27 -07:00
#[cfg(not(feature = "std"))]
pub use self::no_std::*;
#[cfg(not(feature = "std"))]
mod no_std;
#[cfg(feature = "std")]
pub use self::std::*;
#[cfg(feature = "std")]
mod std;