https://github.com/tamschi/proc-macro-warning
Custom proc macro warnings on stable Rust, sort of.
https://github.com/tamschi/proc-macro-warning
Last synced: 3 months ago
JSON representation
Custom proc macro warnings on stable Rust, sort of.
- Host: GitHub
- URL: https://github.com/tamschi/proc-macro-warning
- Owner: Tamschi
- License: other
- Created: 2020-12-19T03:07:35.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-06T06:01:37.000Z (over 2 years ago)
- Last Synced: 2025-01-28T05:23:51.708Z (4 months ago)
- Language: Rust
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE-APACHE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# proc-macro-warning
[](https://lib.rs/crates/proc-macro-warning)
[](https://crates.io/crates/proc-macro-warning)
[](https://docs.rs/crates/proc-macro-warning)
[](https://github.com/Tamschi/proc-macro-warning/actions?query=workflow%3ACI+branch%3Adevelop)
[](https://github.com/Tamschi/proc-macro-warning)
[](https://github.com/Tamschi/proc-macro-warning/issues)
[](https://github.com/Tamschi/proc-macro-warning/pulls)
[](https://web.crev.dev/rust-reviews/crate/proc-macro-warning/)Custom warnings for procedural macros on stable Rust, with likely upgrade path to proc macro diagnostics.
## Installation
Please use [cargo-edit](https://crates.io/crates/cargo-edit) to always add the latest version of this library:
```cmd
cargo add proc-macro-warning
```## Example
```rust
// TODO_EXAMPLE
```## 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.## [Code of Conduct](CODE_OF_CONDUCT.md)
## [Changelog](CHANGELOG.md)
## Versioning
`proc-macro-warning` 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).