An open API service indexing awesome lists of open source software.

https://github.com/tamschi/salve

Greasy parsing extensions for `syn`, to calm down macro errors.
https://github.com/tamschi/salve

Last synced: 3 months ago
JSON representation

Greasy parsing extensions for `syn`, to calm down macro errors.

Awesome Lists containing this project

README

        

# salve

[![Lib.rs](https://img.shields.io/badge/Lib.rs-*-84f)](https://lib.rs/crates/salve)
[![Crates.io](https://img.shields.io/crates/v/salve)](https://crates.io/crates/salve)
[![Docs.rs](https://docs.rs/salve/badge.svg)](https://docs.rs/salve)

![Rust 1.61](https://img.shields.io/static/v1?logo=Rust&label=&message=1.61&color=grey)
[![CI](https://github.com/Tamschi/salve/workflows/CI/badge.svg?branch=develop)](https://github.com/Tamschi/salve/actions?query=workflow%3ACI+branch%3Adevelop)
![Crates.io - License](https://img.shields.io/crates/l/salve/0.0.1)

[![GitHub](https://img.shields.io/static/v1?logo=GitHub&label=&message=%20&color=grey)](https://github.com/Tamschi/salve)
[![open issues](https://img.shields.io/github/issues-raw/Tamschi/salve)](https://github.com/Tamschi/salve/issues)
[![open pull requests](https://img.shields.io/github/issues-pr-raw/Tamschi/salve)](https://github.com/Tamschi/salve/pulls)
[![good first issues](https://img.shields.io/github/issues-raw/Tamschi/salve/good%20first%20issue?label=good+first+issues)](https://github.com/Tamschi/salve/contribute)

[![crev reviews](https://web.crev.dev/rust-reviews/badge/crev_count/salve.svg)](https://web.crev.dev/rust-reviews/crate/salve/)
[![Zulip Chat](https://img.shields.io/endpoint?label=chat&url=https%3A%2F%2Fiteration-square-automation.schichler.dev%2F.netlify%2Ffunctions%2Fstream_subscribers_shield%3Fstream%3Dproject%252Fsalve)](https://iteration-square.schichler.dev/#narrow/stream/project.2Fsalve)

Greasy parsing extensions for [`syn`](https://lib.rs/crates/syn), to soften proc macro errors.

## Installation

Please use [cargo-edit](https://crates.io/crates/cargo-edit) to always add the latest version of this library:

```cmd
cargo add salve
```

## Example

```rust
use catch::CatchExt;
use proc_macro2::{Ident, Span, TokenStream};
use quote::quote_spanned;
use salve::ParseOrForgeExt;
use syn::{parse::ParseStream, Error, Token};

pub fn parse_triple(input: ParseStream, errors: &mut Vec) -> (Ident, Token![,], Ident) {
(
// Parsing will continue here regardless of errors, yielding dummy values iff needed.
// Errors are collected for later use.
input.parse_or_forge().catch_item(errors),
input.parse_or_forge().catch_item(errors),
input.parse_or_forge().catch_item(errors),
)
}

pub fn macro_transform(input: ParseStream) -> TokenStream {
let mut errors = vec![];
let (first, _, second) = parse_triple(input, &mut errors);
if !input.is_empty() {
// Added last, since this is often incidental.
errors.push(Error::new_spanned(
input.parse::().expect("infallible"),
"Unexpected tokens.",
))
}
let errors = errors.into_iter().map(Error::into_compile_error);
quote_spanned! {Span::mixed_site()=>
#(#errors)* // Emit parsing errors first, for better visibility.

// Even if `second` is unavailable, `first` may be present, reducing errors elsewhere.
#[automatically_derived]
struct #first;

// Even if `first` is unavailable, `second` may be present, reducing errors elsewhere.
#[automatically_derived]
struct #second;
}
}
```

## License

Licensed under either of

- Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or )
- MIT license
([LICENSE-MIT](LICENSE-MIT) or )

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.

See [CONTRIBUTING](CONTRIBUTING.md) for more information.

## [Code of Conduct](CODE_OF_CONDUCT.md)

## [Changelog](CHANGELOG.md)

## Versioning

`salve` strictly follows [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html) with the following exceptions:

- The minor version will not reset to 0 on major version changes (except for v1).
Consider it the global feature level.
- The patch version will not reset to 0 on major or minor version changes (except for v0.1 and v1).
Consider it the global patch level.

This includes the Rust version requirement specified above.
Earlier Rust versions may be compatible, but this can change with minor or patch releases.

Which versions are affected by features and patches can be determined from the respective headings in [CHANGELOG.md](CHANGELOG.md).

Note that dependencies of this crate may have a more lenient MSRV policy!
Please use `cargo +nightly update -Z minimal-versions` in your automation if you don't generate Cargo.lock manually (or as necessary) and require support for a compiler older than current stable.