Struct cargo::sources::registry::RegistryPackage
source · pub struct RegistryPackage<'a> {
name: InternedString,
vers: Version,
deps: Vec<RegistryDependency<'a>>,
features: BTreeMap<InternedString, Vec<InternedString>>,
features2: Option<BTreeMap<InternedString, Vec<InternedString>>>,
cksum: String,
yanked: Option<bool>,
links: Option<InternedString>,
rust_version: Option<InternedString>,
v: Option<u32>,
}
Expand description
A single line in the index representing a single version of a package.
Fields§
§name: InternedString
§vers: Version
§deps: Vec<RegistryDependency<'a>>
§features: BTreeMap<InternedString, Vec<InternedString>>
§features2: Option<BTreeMap<InternedString, Vec<InternedString>>>
This field contains features with new, extended syntax. Specifically,
namespaced features (dep:
) and weak dependencies (pkg?/feat
).
This is separated from features
because versions older than 1.19
will fail to load due to not being able to parse the new syntax, even
with a Cargo.lock
file.
cksum: String
§yanked: Option<bool>
If true
, Cargo will skip this version when resolving.
This was added in 2014. Everything in the crates.io index has this set now, so this probably doesn’t need to be an option anymore.
links: Option<InternedString>
Native library name this package links to.
Added early 2018 (see https://github.com/rust-lang/cargo/pull/4978),
can be None
if published before then.
rust_version: Option<InternedString>
Required version of rust
Corresponds to package.rust-version
.
Added in 2023 (see https://github.com/rust-lang/crates.io/pull/6267),
can be None
if published before then or if not set in the manifest.
v: Option<u32>
The schema version for this entry.
If this is None, it defaults to version 1. Entries with unknown versions are ignored.
Version 2
format adds the features2
field.
This provides a method to safely introduce changes to index entries and allow older versions of cargo to ignore newer entries it doesn’t understand. This is honored as of 1.51, so unfortunately older versions will ignore it, and potentially misinterpret version 2 and newer entries.
The intent is that versions older than 1.51 will work with a
pre-existing Cargo.lock
, but they may not correctly process cargo update
or build a lock from scratch. In that case, cargo may
incorrectly select a new package that uses a new index format. A
workaround is to downgrade any packages that are incompatible with the
--precise
flag of cargo update
.
Trait Implementations§
source§impl<'de: 'a, 'a> Deserialize<'de> for RegistryPackage<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RegistryPackage<'a>
source§fn 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>,
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RegistryPackage<'a>
impl<'a> Send for RegistryPackage<'a>
impl<'a> Sync for RegistryPackage<'a>
impl<'a> Unpin for RegistryPackage<'a>
impl<'a> UnwindSafe for RegistryPackage<'a>
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
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:208 bytes