#![warn(missing_docs)]
pub mod api;
mod futures;
mod printer;
pub mod storage;
pub use api::call::call;
pub use api::call::notify;
pub use api::{caller, id, print, trap};
static mut DONE: bool = false;
pub mod export {
pub use candid;
pub use candid::types::ic_types::Principal;
pub use serde;
}
pub fn setup() {
unsafe {
if DONE {
return;
}
DONE = true;
}
printer::hook()
}
#[deprecated(
since = "0.3.4",
note = "Use the spawn() function instead, it does the same thing but is more appropriately named."
)]
pub fn block_on<F: 'static + std::future::Future<Output = ()>>(future: F) {
futures::spawn(future);
}
pub fn spawn<F: 'static + std::future::Future<Output = ()>>(future: F) {
futures::spawn(future);
}
#[cfg(target_arch = "wasm32")]
#[macro_export]
macro_rules! println {
($fmt:expr) => (ic_cdk::print(format!($fmt)));
($fmt:expr, $($arg:tt)*) => (ic_cdk::print(format!($fmt, $($arg)*)));
}
#[cfg(not(target_arch = "wasm32"))]
#[macro_export]
macro_rules! println {
($fmt:expr) => (std::println!($fmt));
($fmt:expr, $($arg:tt)*) => (std::println!($fmt, $($arg)*));
}
#[cfg(target_arch = "wasm32")]
#[macro_export]
macro_rules! eprintln {
($fmt:expr) => (ic_cdk::print(format!($fmt)));
($fmt:expr, $($arg:tt)*) => (ic_cdk::print(format!($fmt, $($arg)*)));
}
#[cfg(not(target_arch = "wasm32"))]
#[macro_export]
macro_rules! eprintln {
($fmt:expr) => (std::eprintln!($fmt));
($fmt:expr, $($arg:tt)*) => (std::eprintln!($fmt, $($arg)*));
}