Closed
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
Here it needs to take the renamed name (but unfortunately our little cargo-metadata dataset doesn't record this currently).