4 releases
0.2.2 | May 30, 2024 |
---|---|
0.2.1 | Feb 11, 2024 |
0.2.0 | Feb 10, 2024 |
0.1.0 | Apr 10, 2023 |
#133 in Procedural macros
909 downloads per month
Used in 9 crates
(2 directly)
28KB
435 lines
Minimalist Rust syntax parsing for procedural macros.
You can think of myn
as a minimalist crate with similarities to syn
. It provides utilities to help write procedural macros, but does not attempt to replicate the syn
types or API.
myn
exists to support a very small subset of the entire Rust language syntax. Just enough to implement #[derive]
macros on struct
s and enum
s, and that's about it. Everything else is currently out of scope.
Why
- 100% safe Rust 🦀.
- Write
#[derive]
macros with extremely fast compile times. See benchmarks.
MSRV Policy
The Minimum Supported Rust Version for myn
will always be made available in the MSRV.md file on GitHub.