cxx 0.5.10

Safe interop between Rust and C++
Documentation
#[cxx::bridge]
mod ffi {
    enum Bad {
        A = 1u16,
        B = 2i64,
    }
}

fn main() {}