Merge #6

6: Update all data structures based on syn 1.0 r=taiki-e a=taiki-e



Co-authored-by: Taiki Endo <te316e89@gmail.com>
tree: f5e665df801fd1e9c495fe4d518d662605797337
  1. ci/
  2. examples/
  3. src/
  4. .editorconfig
  5. .gitignore
  6. .rustfmt.toml
  7. azure-pipelines.yml
  8. bors.toml
  9. Cargo.toml
  10. CHANGELOG.md
  11. LICENSE-APACHE
  12. LICENSE-MIT
  13. README.md
README.md

syn-mid

Build Status Crates.io Docs.rs License Minimum supported Rust version

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.3"

The current syn-mid requires Rust 1.31 or later.

Examples

Documentation

Optional features

  • clone-impls — Clone impls for all syntax tree types.

License

Licensed under either of

at your option.

Contribution

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.