no_std support
This commit is contained in:
parent
e95671f68f
commit
268805ba0c
18 changed files with 190 additions and 38 deletions
9
src/font/system/mod.rs
Normal file
9
src/font/system/mod.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#[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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue