cosmic-text/src/font/system/mod.rs
2023-01-04 18:41:26 -07:00

18 lines
450 B
Rust

#[cfg(not(feature = "std"))]
pub use self::no_std::*;
#[cfg(not(feature = "std"))]
mod no_std;
//TODO: use std implementation on Redox
#[cfg(all(feature = "std", target_os = "redox"))]
pub use self::redox::*;
#[cfg(all(feature = "std", target_os = "redox"))]
mod redox;
#[cfg(all(feature = "std", not(target_os = "redox")))]
pub use self::std::*;
#[cfg(all(feature = "std", not(target_os = "redox")))]
mod std;
// re-export fontdb
pub use fontdb;