inkpad-std 0.1.0

std bound for inkpad
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Inkpad `std` adaptor
#![cfg_attr(not(feature = "std"), no_std)]
mod no_std;
mod std;

#[cfg(feature = "std")]
pub use self::std::*;

#[cfg(not(feature = "std"))]
pub extern crate alloc;

#[cfg(not(feature = "std"))]
pub use self::no_std::*;