Cargo Features

[dependencies]
google-jwt-verify = { version = "0.3.0", default-features = false, features = ["async", "blocking"] }
default = blocking

The blocking feature is set by default whenever google-jwt-verify is added without default-features = false somewhere in the dependency tree.

async = async-trait

Affects key_provider::AsyncKeyProvider

blocking default

Enables blocking of reqwest ^0.10.4

Affects key_provider::KeyProvider

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.

async-trait async?