Cargo Features
[dependencies]
byteorder_async = { version = "1.2.0", default-features = false, features = ["std", "tokio_async", "futures_async", "i128"] }
- default = std
-
The
std
feature is set by default wheneverbyteorder_async
is added without
somewhere in the dependency tree.default-features = false - std default
- tokio_async = tokio
- futures_async = futures
- i128
-
This feature is no longer used and is DEPRECATED. This crate now automatically enables i128 support for Rust compilers that support it. The feature will be removed if and when a new major version is released.
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- tokio tokio_async?
-
Enables tokio ^0.2.18
- futures futures_async?