| commit | 62b396558291aa2926431d39649b2e52fd621488 | [log] [tgz] |
|---|---|---|
| author | Andrew Walbran <qwandor@google.com> | Wed Nov 15 23:01:46 2023 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Nov 15 23:01:46 2023 +0000 |
| tree | b95f13e5d0581ae8c48bed8555edb24f80bfa7ba | |
| parent | 48fc21558e47602190cb53f5f476fc99a9929d4b [diff] | |
| parent | 336bed4254accdcdd59f8732a576a5c91c046f02 [diff] |
Upgrade syn-mid to 0.6.0 am: 336bed4254 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/2832419 Change-Id: Ifb479cc65ccaddfd6cd40a7f9702d52ef9c7b025 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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.
Add this to your Cargo.toml:
[dependencies] syn-mid = "0.5"
Compiler support: requires rustc 1.56+
clone-impls — Clone impls for all syntax tree types.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.