1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(error_generic_member_access)]
#![feature(exit_status_error)]

#[macro_use]
#[cfg(feature = "tracing")]
extern crate tracing;

#[macro_use]
#[cfg(not(feature = "tracing"))]
extern crate log;

pub extern crate utils;

pub use utils::toolchain::sdk::Sdk;


pub mod run;