Use std font system for redox

This commit is contained in:
Jeremy Soller 2023-03-08 20:44:26 -07:00
parent 1bc198fd63
commit e43cc03354
2 changed files with 2 additions and 110 deletions

View file

@ -3,15 +3,9 @@ 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")))]
#[cfg(feature = "std")]
pub use self::std::*;
#[cfg(all(feature = "std", not(target_os = "redox")))]
#[cfg(feature = "std")]
mod std;
// re-export fontdb