Cargo Features
[dependencies]
reqwless = { version = "0.13.0", default-features = false, features = ["alloc", "defmt", "log", "embedded-tls"] }
- default = embedded-tls
-
The
embedded-tls
feature is set by default wheneverreqwless
is added without
somewhere in the dependency tree.default-features = false - alloc
-
Enables alloc of optional embedded-tls
- defmt
-
Enables defmt, defmt-03 of embedded-io and embedded-io-async, defmt of nourl and optional embedded-tls
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.
- log implicit feature
-
Enables log
log:
A lightweight logging facade for Rust
- embedded-tls default
-
Affects
client::TlsConfig
,client::TlsVerify
…