| Crates.io | maiko-macros |
| lib.rs | maiko-macros |
| version | 0.1.1 |
| created_at | 2025-12-14 20:20:48.80452+00 |
| updated_at | 2025-12-18 22:59:11.555581+00 |
| description | Procedural macros for the Maiko actor runtime |
| homepage | https://github.com/ddrcode/maiko |
| repository | https://github.com/ddrcode/maiko |
| max_upload_size | |
| id | 1985035 |
| size | 5,934 |
Procedural macros for the Maiko actor runtime.
#[derive(Event)]: Implements maiko::Event for your type.Usage:
use maiko_macros::Event;
#[derive(Clone, Debug, Event)]
enum MyEvent { Foo, Bar }
Publishing notes:
maiko can depend on it by version.Notes:
maiko crate in your dependency tree because it implements the maiko::Event trait for your type.where clauses are preserved when deriving.use maiko_macros::Event;