// This is free and unencumbered software released into the public domain.
usesuper::{LoadManifestError, Manifest, Value};usestd::path::Path;pubfnload_cargo_toml(path: impl AsRef<Path>)->Result<Manifest, LoadManifestError>{Ok(Manifest::from_path(path.as_ref())?)}