https://github.com/taiki-e/syn-mid
Providing the features between "full" and "derive" of syn.
https://github.com/taiki-e/syn-mid
proc-macro rust
Last synced: 11 months ago
JSON representation
Providing the features between "full" and "derive" of syn.
- Host: GitHub
- URL: https://github.com/taiki-e/syn-mid
- Owner: taiki-e
- License: apache-2.0
- Created: 2019-02-14T14:47:36.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2025-03-20T18:37:20.000Z (about 1 year ago)
- Last Synced: 2025-05-09T01:45:22.438Z (11 months ago)
- Topics: proc-macro, rust
- Language: Rust
- Homepage: https://docs.rs/syn-mid
- Size: 383 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# syn-mid
[](https://crates.io/crates/syn-mid)
[](https://docs.rs/syn-mid)
[](#license)
[](https://www.rust-lang.org)
[](https://github.com/taiki-e/syn-mid/actions)
Providing the features between "full" and "derive" of syn.
This crate provides the following two unique data structures.
- [`syn_mid::ItemFn`] -- A function whose body is not parsed.
```text
fn process(n: usize) -> Result<()> { ... }
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^
```
- [`syn_mid::Block`] -- A block whose body is not parsed.
```text
{ ... }
^ ^
```
Other data structures are the same as data structures of [syn]. These are
defined in this crate because they cannot be used in [syn] without "full"
feature.
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
syn-mid = "0.6"
```
[**Examples**](https://github.com/taiki-e/syn-mid/tree/HEAD/examples)
## Optional features
- **`clone-impls`** — Clone impls for all syntax tree types.
[syn]: https://github.com/dtolnay/syn
[`syn_mid::Block`]: https://docs.rs/syn-mid/latest/syn_mid/struct.Block.html
[`syn_mid::ItemFn`]: https://docs.rs/syn-mid/latest/syn_mid/struct.ItemFn.html
## License
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or
[MIT license](LICENSE-MIT) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.