-
Notifications
You must be signed in to change notification settings - Fork 213
Closed
Labels
A-buildsArea: Building the documentation for a crateArea: Building the documentation for a crateC-bugCategory: This is a bugCategory: This is a bug
Description
async-compression 0.3.6
has a tokio-02
and a tokio-03
optional dependency, but these both get recorded and displayed as tokio
. Dumping out of the database I see:
{
...
"(all-implementations,\"{futures-io,stream,tokio-02,tokio-03}\")",
...
"(tokio,{})",
"(tokio,{})",
...
}
So all-implementations
depends on tokio-02
and tokio-03
, but the optional dependencies themselves show tokio
.
Line 240 in b527df8
.map(|dep| Feature::new(dep.name.clone(), Vec::new())) |
Here it needs to take the renamed name (but unfortunately our little cargo-metadata dataset doesn't record this currently).
Metadata
Metadata
Assignees
Labels
A-buildsArea: Building the documentation for a crateArea: Building the documentation for a crateC-bugCategory: This is a bugCategory: This is a bug