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.
```rust,no_run
use use_rust_cargo::find_manifest;
let manifest = find_manifest(".")?;
println!("{}", manifest);
```