https://github.com/tamschi/catch
Error recovery utilities.
https://github.com/tamschi/catch
Last synced: 3 months ago
JSON representation
Error recovery utilities.
- Host: GitHub
- URL: https://github.com/tamschi/catch
- Owner: Tamschi
- License: other
- Created: 2022-06-27T08:16:19.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-12T23:53:47.000Z (about 1 year ago)
- Last Synced: 2025-01-28T05:23:54.967Z (4 months ago)
- Language: Rust
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE-APACHE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# catch
[](https://lib.rs/crates/catch)
[](https://crates.io/crates/catch)
[](https://docs.rs/catch)
[](https://github.com/Tamschi/catch/actions?query=workflow%3ACI+branch%3Adevelop)
[](https://github.com/Tamschi/catch)
[](https://github.com/Tamschi/catch/issues)
[](https://github.com/Tamschi/catch/pulls)
[](https://github.com/Tamschi/catch/contribute)[](https://web.crev.dev/rust-reviews/crate/catch/)
[](https://iteration-square.schichler.dev/#narrow/stream/project.2Fcatch)Error recovery utilities.
## Installation
Please use [cargo-edit](https://crates.io/crates/cargo-edit) to always add the latest version of this library:
```cmd
cargo add catch
```## 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.See [CONTRIBUTING](CONTRIBUTING.md) for more information.
## [Code of Conduct](CODE_OF_CONDUCT.md)
## [Changelog](CHANGELOG.md)
## Versioning
`catch` 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.