phoxal 0.7.0

Phoxal — production-oriented autonomous robot framework (engine, model, typed bus, contracts).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub const SCHEMA_NAME: &str = "phoxal-api-component/v1";
pub const SCHEMA_VERSION: u32 = 1;

pub mod capability;

#[cfg(test)]
mod v1_version_tests {
    use super::{SCHEMA_NAME, SCHEMA_VERSION};

    #[test]
    fn api_contract_version_is_stable() {
        assert_eq!(SCHEMA_NAME, "phoxal-api-component/v1");
        assert_eq!(SCHEMA_VERSION, 1);
    }
}