vtcode-macros 0.123.5

Procedural macros for VT Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# vtcode-macros

Procedural macros for VT Code. Contains derive macros and attribute macros shared across workspace crates.

## Conventions

- This is a proc-macro crate. It must not depend on any other vtcode workspace crate.
- Use `syn` for parsing, `quote` for code generation, `proc-macro2` for token streams.
- Keep macro implementations minimal -- generate code that delegates to runtime helpers in other crates.
- All macros must have doc comments with usage examples.

## Dependencies

- `syn` (parsing)
- `quote` (code generation)
- `proc-macro2` (token streams)