mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-02 15:01:16 +00:00
Remove outdated DistributionWire
serde annotations (#5400)
This struct doesn't implement `serde::Serialize`, the annotations are dead.
This commit is contained in:
parent
82f4864386
commit
9b12fcb90d
1 changed files with 4 additions and 4 deletions
|
@ -1137,13 +1137,13 @@ struct DistributionWire {
|
|||
id: DistributionId,
|
||||
#[serde(default)]
|
||||
sdist: Option<SourceDist>,
|
||||
#[serde(default, skip_serializing_if = "Vec::is_empty")]
|
||||
#[serde(default)]
|
||||
wheels: Vec<Wheel>,
|
||||
#[serde(default, skip_serializing_if = "Vec::is_empty")]
|
||||
#[serde(default)]
|
||||
dependencies: Vec<DependencyWire>,
|
||||
#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
|
||||
#[serde(default)]
|
||||
optional_dependencies: BTreeMap<ExtraName, Vec<DependencyWire>>,
|
||||
#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
|
||||
#[serde(default)]
|
||||
dev_dependencies: BTreeMap<GroupName, Vec<DependencyWire>>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue