phoxal 0.31.1

Phoxal - production-oriented autonomous robot framework: the runtime engine and model (the api contract tree lives in phoxal-api, the typed bus in phoxal-bus).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Authored manifest model.
//!
//! The single source of truth for what a robot is: `robot.yaml`,
//! `structure.urdf`, and `components/<name>/component.yaml` /
//! `simulation.yaml`. Each submodule is the public schema for one authored
//! file kind; runtimes and the CLI parse these directly.

pub mod component;
pub mod robot;
pub mod simulation;
pub mod structure;
pub mod v0;