use-rust-cargo 0.1.0

Composable Cargo project and workspace primitives for RustUse.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# use-rust-cargo

Composable Cargo project and workspace primitives for RustUse.

`use-rust-cargo` provides typed helpers for finding manifests, reading Cargo metadata, and inspecting local Cargo workspaces.

## Example

```rust,no_run
use use_rust_cargo::find_manifest;

let manifest = find_manifest(".")?;
println!("{}", manifest);
# Ok::<(), Box<dyn std::error::Error>>(())
```