38 releases

new 0.1.37 Aug 31, 2024
0.1.36 Aug 29, 2024
0.1.31 Jul 26, 2024
0.1.19 Jun 29, 2024

#337 in Procedural macros

Download history 629/week @ 2024-06-15 935/week @ 2024-06-22 695/week @ 2024-06-29 921/week @ 2024-07-06 68/week @ 2024-07-13 71/week @ 2024-07-20 418/week @ 2024-07-27 146/week @ 2024-08-03 28/week @ 2024-08-10 11/week @ 2024-08-17 117/week @ 2024-08-24

396 downloads per month
Used in 7 crates (5 directly)

Apache-2.0

43KB
1K SLoC

znap-syn

Parsing and generating code for macros in Rust

The znap-syn module is a fundamental part of the znap library ecosystem, designed specifically for analyzing and generating code in Rust. This module is essential for the functionality of znap-macros, a collection of macros that depends on znap-syn for code generation and manipulation.

znap-syn allows you to transform Rust code fragments into manipulable objects, which can then be used to apply specific logic and generate new code.

Main components

  • CollectionMod: A CollectionMod is a structured representation of a Rust module. This object contains:

    • A list of ActionFn: functions that define actions within the module.
    • A name: the name of the module.
    • The module in its raw form: the normal structure of the module before being transformed.

In addition to the CollectionMod, znap-syn handles other object types such as ActionStruct, QueryStruct, and ErrorEnum. These are also derived from code snippets and used for various transformations and code generation.

Package

Package Description Version Docs
znap-syn Parsing and generating code for macros in Rust Crates.io Docs.rs

Dependencies

~3–13MB
~108K SLoC