phoxal 0.18.0

Phoxal — production-oriented autonomous robot framework (engine, model, typed bus, contracts).
Documentation
1
2
3
4
5
6
7
8
9
10
11
// The mandatory #[phoxal(api = …)] selector is missing (D59/D60).
use phoxal::api::y2026_1 as api;
use phoxal::prelude::*;

#[derive(phoxal::Runtime)]
#[phoxal(id = "no-api")]
struct NoApi {
    target: Publisher<api::drive::Target>,
}

fn main() {}