Cargo Features

[dependencies]
xmlrpc = { version = "0.15.1", default-features = false, features = ["http", "tls"] }
default = http, tls

These default features are set whenever xmlrpc is added without default-features = false somewhere in the dependency tree.

http default = mime, reqwest

Affects transport::http

tls default

Enables default-tls of reqwest ^0.11.0

reqwest:

Note: this doesn't enable the 'native-tls' feature, which adds specific functionality for it.

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 http tls

Enables reqwest ^0.11.0

mime http

Enables mime

private