use-rust-release 0.1.0

Composable release-readiness primitives for RustUse.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# use-rust-release

Composable release-readiness primitives for RustUse.

`use-rust-release` reports local release issues for crates without performing network calls or running `cargo publish`.

## Example

```rust,no_run
use use_rust_release::ReleaseReport;

let report = ReleaseReport::check(".")?;
assert!(report.is_ready() || !report.issues().is_empty());
# Ok::<(), Box<dyn std::error::Error>>(())
```