Cargo Features
[dependencies]
ifttt_webhook_rust = { version = "0.2.2", default-features = false, features = ["blocking", "non-blocking", "delay"] }
- default = blocking
-
The
blocking
feature is set by default wheneverifttt_webhook_rust
is added without
somewhere in the dependency tree.default-features = false - blocking default = ureq
-
Affects
ifttt_webhook_rust::BlockingIftttWebHookClient
… - non-blocking delay? = reqwest
-
Affects
ifttt_webhook_rust::NonBlockingIftttWebHookClient
… - delay = non-blocking, tokio
-
Affects
ifttt_webhook_rust::DelayResultHandler
…
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.
- reqwest non-blocking?
-
Enables reqwest ^0.11.2
- ureq blocking
- tokio delay?