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
{{ message }}
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
The default features of the tokio crate bring quite a few tokio-* crates that are most likely unused (e.g. tokio-fs). It'll be good to reduce the number of these crates with a more explicit dependency in Cargo.toml:
tokio = { version = "0.1", default-features = false, features = ["codec", ....] }
where in features, one would only list the used / needed features of tokio.
The text was updated successfully, but these errors were encountered:
The default features of the
tokio
crate bring quite a fewtokio-*
crates that are most likely unused (e.g.tokio-fs
). It'll be good to reduce the number of these crates with a more explicit dependency in Cargo.toml:where in
features
, one would only list the used / needed features of tokio.The text was updated successfully, but these errors were encountered: