vex-macros 0.1.4

Procedural macros for the VEX protocol
Documentation

vex-macros

Procedural macros for the VEX Protocol.

Features

  • Derive Macros - Automatic trait implementations
  • Attribute Macros - Declarative agent configuration

Installation

[dependencies]
vex-macros = "0.1"

Quick Start

use vex_macros::Agent;

#[derive(Agent)]
struct MyAgent {
    name: String,
    state: AgentState,
}

License

MIT License - see LICENSE for details.