2022-11-08 08:43:27 -07:00
|
|
|
#[cfg(not(feature = "std"))]
|
|
|
|
|
pub use self::no_std::*;
|
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
|
|
|
mod no_std;
|
|
|
|
|
|
2022-11-15 12:26:59 -07:00
|
|
|
//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")))]
|
2022-11-08 08:43:27 -07:00
|
|
|
pub use self::std::*;
|
2022-11-15 12:26:59 -07:00
|
|
|
#[cfg(all(feature = "std", not(target_os = "redox")))]
|
2022-11-08 08:43:27 -07:00
|
|
|
mod std;
|
2022-12-29 08:49:48 -08:00
|
|
|
|
|
|
|
|
// re-export fontdb
|
|
|
|
|
pub use fontdb;
|