shipper-core 0.4.0

Core library behind the `shipper` CLI: engine, planning, state, registry, and remediation primitives for `cargo publish` workspaces.
Documentation
1
2
3
4
5
6
7
8
use std::path::Path;

use anyhow::Result;
use cargo_metadata::Metadata;

pub(super) fn load_metadata(manifest_path: &Path) -> Result<Metadata> {
    crate::ops::cargo::load_metadata(manifest_path)
}