https://github.com/wyatt-herkamp/more-syn-types
https://github.com/wyatt-herkamp/more-syn-types
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/wyatt-herkamp/more-syn-types
- Owner: wyatt-herkamp
- License: apache-2.0
- Created: 2023-10-12T15:18:08.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-13T15:24:37.000Z (over 1 year ago)
- Last Synced: 2025-01-27T13:50:29.499Z (3 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# more-syn-types
A collection of macros from the rust standard library. Allows you to parse them in your own code# Goals
- Get As Close as possible to the Rust Standard Library when parsing the macros
- Execute Macros such as `include_str!` and `include_bytes!` if you need to read it.# Use Cases
- Need to read over a doc attribute to put into the macro generated code### Contributing
If you notice something is not parsing that is allowed in the Rust Standard Library, please create a PR.Feel free to parse nightly macros as well.
# Crate Features
- 'quote' - Enables adding parsed macro into quote
- 'executing' - Enables executing macros such as `include_str!` and `include_bytes!`
- 'extra-traits' - Add Debug to parsed macros