robot_behavior 0.4.8

a library for robot common behavior
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    #[cfg(feature = "to_cxx")]
    {
        cxx_build::bridge("src/types.rs")
            .std("c++14")
            .compile("robot_behavior_cxx");

        println!("cargo:rerun-if-changed=src/ffi/to_cxx.rs");
    }
}