//! Shared helpers for the phoxal proc-macros.
use TokenStream;
use quote;
/// The path generated code uses to reach the framework. The engine crate makes
/// this resolve to itself via `extern crate self as phoxal;`.
/// The path generated code uses to reach the dated API contract tree (the
/// `y2026_N` version modules + their `Api` marker type). These live in the
/// `phoxal-api` crate, which every participant depends on directly (and the engine
/// pulls in as a dev-dependency for its own tests/examples). The participant
/// derives name `phoxal_api::y2026_N::Api` to bind a participant's one API
/// version, since that marker type lives only here and is not re-exported through
/// the engine's `phoxal::bus` ABI floor.
/// The standard derive set applied to every macro-emitted wire body / helper
/// type: cloneable, comparable, debuggable, and serde round-trippable.