Cargo Features
[dependencies]
wireguard-keys = { version = "0.1.1", default-features = false, features = ["schema", "serde", "base64", "base32", "hex", "rocket"] }
- default = base64, hex, serde
-
These default features are set whenever
wireguard-keys
is added without
somewhere in the dependency tree.default-features = false - schema = schemars
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.
- serde default
- base64 default
-
Enables base64 ^0.13.0
- base32 implicit feature
-
Enables base32 ^0.4.0
base32:
Base32 encoder/decoder for Rust
- hex default
- rocket implicit feature
-
Enables rocket
rocket:
Web framework with a focus on usability, security, extensibility, and speed
- schemars schema?