selfe-start 0.0.28

Crate defining the entry point to the initial thread on seL4
1
2
3
4
5
6
7
8
extern crate selfe_config;
use selfe_config::build_helpers::*;

fn main() {
    BuildEnv::request_reruns();
    let config = load_config_from_env_or_default();
    config.print_boolean_feature_flags();
}