Struct cargo_toml::Manifest
source · [−]pub struct Manifest<Metadata = Value> {Show 15 fields
pub package: Option<Package<Metadata>>,
pub workspace: Option<Workspace<Metadata>>,
pub dependencies: DepsSet,
pub dev_dependencies: DepsSet,
pub build_dependencies: DepsSet,
pub target: TargetDepsSet,
pub features: FeatureSet,
pub patch: PatchSet,
pub lib: Option<Product>,
pub profile: Profiles,
pub badges: Badges,
pub bin: Vec<Product>,
pub bench: Vec<Product>,
pub test: Vec<Product>,
pub example: Vec<Product>,
}
Expand description
The top-level Cargo.toml
structure
The Metadata
is a type for [package.metadata]
table. You can replace it with
your own struct type if you use the metadata and don’t want to use the catch-all Value
type.
Fields
package: Option<Package<Metadata>>
workspace: Option<Workspace<Metadata>>
dependencies: DepsSet
dev_dependencies: DepsSet
build_dependencies: DepsSet
target: TargetDepsSet
features: FeatureSet
patch: PatchSet
lib: Option<Product>
Note that due to autolibs feature this is not the complete list
unless you run complete_from_path
profile: Profiles
badges: Badges
bin: Vec<Product>
Note that due to autobins feature this is not the complete list
unless you run complete_from_path
bench: Vec<Product>
test: Vec<Product>
example: Vec<Product>
Implementations
sourceimpl Manifest<Value>
impl Manifest<Value>
sourcepub fn from_slice(cargo_toml_content: &[u8]) -> Result<Self, Error>
pub fn from_slice(cargo_toml_content: &[u8]) -> Result<Self, Error>
Parse contents of a Cargo.toml
file already loaded as a byte slice.
It does not call complete_from_path
, so may be missing implicit data.
sourceimpl<Metadata: for<'a> Deserialize<'a>> Manifest<Metadata>
impl<Metadata: for<'a> Deserialize<'a>> Manifest<Metadata>
sourcepub fn from_slice_with_metadata(
cargo_toml_content: &[u8]
) -> Result<Self, Error>
pub fn from_slice_with_metadata(
cargo_toml_content: &[u8]
) -> Result<Self, Error>
Parse Cargo.toml
, and parse its [package.metadata]
into a custom Serde-compatible type.package
It does not call complete_from_path
, so may be missing implicit data.
sourcepub fn from_path_with_metadata(
cargo_toml_path: impl AsRef<Path>
) -> Result<Self, Error>
pub fn from_path_with_metadata(
cargo_toml_path: impl AsRef<Path>
) -> Result<Self, Error>
Parse contents from Cargo.toml
file on disk, with custom Serde-compatible metadata type.
Calls complete_from_path
sourcepub fn complete_from_path(&mut self, path: &Path) -> Result<(), Error>
pub fn complete_from_path(&mut self, path: &Path) -> Result<(), Error>
Cargo.toml
doesn’t contain explicit information about [lib]
and [[bin]]
,
which are inferred based on files on disk.
This scans the disk to make the data in the manifest as complete as possible.
sourcepub fn complete_from_abstract_filesystem(
&mut self,
fs: impl AbstractFilesystem
) -> Result<(), Error>
pub fn complete_from_abstract_filesystem(
&mut self,
fs: impl AbstractFilesystem
) -> Result<(), Error>
Cargo.toml
doesn’t contain explicit information about [lib]
and [[bin]]
,
which are inferred based on files on disk.
You can provide any implementation of directory scan, which doesn’t have to be reading straight from disk (might scan a tarball or a git repo, for example).
Trait Implementations
sourceimpl<'de, Metadata> Deserialize<'de> for Manifest<Metadata> where
Metadata: Deserialize<'de>,
impl<'de, Metadata> Deserialize<'de> for Manifest<Metadata> where
Metadata: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<Metadata> StructuralPartialEq for Manifest<Metadata>
Auto Trait Implementations
impl<Metadata> RefUnwindSafe for Manifest<Metadata> where
Metadata: RefUnwindSafe,
impl<Metadata> Send for Manifest<Metadata> where
Metadata: Send,
impl<Metadata> Sync for Manifest<Metadata> where
Metadata: Sync,
impl<Metadata> Unpin for Manifest<Metadata> where
Metadata: Unpin,
impl<Metadata> UnwindSafe for Manifest<Metadata> where
Metadata: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more