pub struct TomlManifest {
Show 21 fields pub cargo_features: Option<Vec<String>>, pub package: Option<Box<TomlPackage>>, pub project: Option<Box<TomlPackage>>, pub profile: Option<TomlProfiles>, pub lib: Option<TomlLibTarget>, pub bin: Option<Vec<TomlBinTarget>>, pub example: Option<Vec<TomlExampleTarget>>, pub test: Option<Vec<TomlTestTarget>>, pub bench: Option<Vec<TomlTestTarget>>, pub dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>, pub dev_dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>, pub dev_dependencies2: Option<BTreeMap<String, MaybeWorkspaceDependency>>, pub build_dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>, pub build_dependencies2: Option<BTreeMap<String, MaybeWorkspaceDependency>>, pub features: Option<BTreeMap<String, Vec<String>>>, pub target: Option<BTreeMap<String, TomlPlatform>>, pub replace: Option<BTreeMap<String, TomlDependency>>, pub patch: Option<BTreeMap<String, BTreeMap<String, TomlDependency>>>, pub workspace: Option<TomlWorkspace>, pub badges: Option<MaybeWorkspaceBtreeMap>, pub lints: Option<MaybeWorkspaceLints>,
}
Expand description

This type is used to deserialize Cargo.toml files.

Fields§

§cargo_features: Option<Vec<String>>§package: Option<Box<TomlPackage>>§project: Option<Box<TomlPackage>>§profile: Option<TomlProfiles>§lib: Option<TomlLibTarget>§bin: Option<Vec<TomlBinTarget>>§example: Option<Vec<TomlExampleTarget>>§test: Option<Vec<TomlTestTarget>>§bench: Option<Vec<TomlTestTarget>>§dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>§dev_dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>§dev_dependencies2: Option<BTreeMap<String, MaybeWorkspaceDependency>>§build_dependencies: Option<BTreeMap<String, MaybeWorkspaceDependency>>§build_dependencies2: Option<BTreeMap<String, MaybeWorkspaceDependency>>§features: Option<BTreeMap<String, Vec<String>>>§target: Option<BTreeMap<String, TomlPlatform>>§replace: Option<BTreeMap<String, TomlDependency>>§patch: Option<BTreeMap<String, BTreeMap<String, TomlDependency>>>§workspace: Option<TomlWorkspace>§badges: Option<MaybeWorkspaceBtreeMap>§lints: Option<MaybeWorkspaceLints>

Implementations§

source§

impl TomlManifest

source§

impl TomlManifest

source

pub fn prepare_for_publish( &self, ws: &Workspace<'_>, package_root: &Path ) -> CargoResult<TomlManifest>

Prepares the manifest for publishing.

source

pub fn to_real_manifest( me: TomlManifest, embedded: bool, source_id: SourceId, package_root: &Path, config: &Config ) -> CargoResult<(Manifest, Vec<PathBuf>)>

source

fn to_virtual_manifest( me: TomlManifest, source_id: SourceId, root: &Path, config: &Config ) -> CargoResult<(VirtualManifest, Vec<PathBuf>)>

source

fn replace( &self, cx: &mut Context<'_, '_> ) -> CargoResult<Vec<(PackageIdSpec, Dependency)>>

source

fn patch( &self, cx: &mut Context<'_, '_> ) -> CargoResult<HashMap<Url, Vec<Dependency>>>

Trait Implementations§

source§

impl Debug for TomlManifest

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for TomlManifest

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for TomlManifest

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 1464 bytes