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 whenever ifttt_webhook_rust is added without default-features = false somewhere in the dependency tree.

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?