saddle-runtime 0.2.0

Saddle managed asynchronous runtime and lifecycle
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let fact =
        saddle_runtime::production_fact::runtime_production_fact_input().into_canonical_json()?;
    use std::io::Write as _;
    std::io::stdout().write_all(&fact)?;
    Ok(())
}