Cargo Features
[dependencies]
graph-oauth = { version = "2.0.2", default-features = false, features = ["native-tls", "rustls-tls", "brotli", "deflate", "trust-dns", "socks", "openssl", "interactive-auth"] }
- default = native-tls
-
The
native-tls
feature is set by default whenevergraph-oauth
is added without
somewhere in the dependency tree.default-features = false - native-tls default
-
Enables native-tls of graph-core and reqwest
reqwest:
Enables native-tls specific functionality not available by default.
- rustls-tls
-
Enables rustls-tls of graph-core and reqwest
- brotli
-
Enables brotli of graph-core and reqwest
- deflate
-
Enables deflate of graph-core and reqwest
- trust-dns
-
Enables trust-dns of graph-core and reqwest
reqwest:
Deprecated, remove this feature while bumping minor versions.
- socks
-
Enables socks of graph-core and reqwest
- openssl
-
Enables openssl
- interactive-auth
-
Enables tao ^0.26.1 and wry ^0.37.0
Affects
device_code_credential::DeviceCodeInteractiveAuth
,device_authorization_response::InteractiveDeviceCodeEvent
,graph-oauth::interactive
…