9 unstable releases
0.6.0 | Sep 30, 2023 |
---|---|
0.5.4 | Jun 29, 2023 |
0.5.3 | Jan 5, 2021 |
0.5.2 | Dec 29, 2020 |
0.3.0 | Feb 17, 2019 |
#62 in Procedural macros
235,916 downloads per month
Used in 49 crates
(4 directly)
38KB
845 lines
syn-mid
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.fn process(n: usize) -> Result<()> { ... } ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^
-
syn_mid::Block
-- A block whose body is not parsed.{ ... } ^ ^
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
:
[dependencies]
syn-mid = "0.5"
Compiler support: requires rustc 1.56+
Optional features
clone-impls
— Clone impls for all syntax tree types.
License
Licensed under either of Apache License, Version 2.0 or MIT license 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.
Dependencies
~205–640KB
~15K SLoC