pub struct Manifest {
pub cargo_features: Vec<String>,
pub package: Package,
pub features: BTreeMap<String, Vec<String>>,
pub dependencies: BTreeMap<String, Dependency>,
pub target: BTreeMap<String, TargetDependencies>,
pub bins: Vec<Bin>,
pub workspace: Option<Workspace>,
pub patch: BTreeMap<String, RegistryPatch>,
pub replace: BTreeMap<String, Patch>,
}
Fields§
§cargo_features: Vec<String>
§package: Package
§features: BTreeMap<String, Vec<String>>
§dependencies: BTreeMap<String, Dependency>
§target: BTreeMap<String, TargetDependencies>
§bins: Vec<Bin>
§workspace: Option<Workspace>
§patch: BTreeMap<String, RegistryPatch>
§replace: BTreeMap<String, Patch>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnwindSafe for Manifest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more