playdate_simulator_utils/lib.rs
1#![feature(error_generic_member_access)]
2#![feature(exit_status_error)]
3
4#[macro_use]
5#[cfg(feature = "tracing")]
6extern crate tracing;
7
8#[macro_use]
9#[cfg(not(feature = "tracing"))]
10extern crate log;
11
12pub extern crate utils;
13
14pub use utils::toolchain::sdk::Sdk;
15
16
17pub mod run;