You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[target.'cfg(feature = "tracing")'.dependencies]
tokio-net = { version = "=0.2.0-alpha.6", optional = true, path = "../tokio-net", features = ["tracing", "async-traits"] }
tokio-executor = { version = "=0.2.0-alpha.6", optional = true, path = "../tokio-executor", features = ["tracing"] }
According to Cargo's documentation, this does not work; the cfg(feature = "tracing") predicate will always evaluate to false. I think this only works because of the other unconditional dependency on tokio-net and tokio-executor above.
Version
git master
Platform
all
Subcrates
Description
tokio/Cargo.toml has:
According to Cargo's documentation, this does not work; the
cfg(feature = "tracing")
predicate will always evaluate to false. I think this only works because of the other unconditional dependency on tokio-net and tokio-executor above.tokio-rs/tracing#365 is a related issue, and rust-lang/cargo#7442 is the Cargo issue which is mostly about lack of diagnostics for this issue.
The text was updated successfully, but these errors were encountered: