Cargo Features
[dependencies]
product-os-h2 = { version = "0.0.2", default-features = false, features = ["std", "stream", "tokio-util", "tokio"] }
- default = std
-
The
std
feature is set by default wheneverproduct-os-h2
is added without
somewhere in the dependency tree.default-features = false - std default = h2
-
Enables std of no-std-compat
- stream
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-util implicit feature
-
Enables tokio-util
tokio-util:
Additional utilities for working with Tokio
- tokio implicit feature
-
Enables tokio
tokio:
An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications
- h2 std