Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
IronRDP TLS
TLS boilerplate common with most IronRDP clients.
This crate exposes three features for selecting the TLS backend:
rustls
: use the rustls crate.native-tls
: use the native-tls crate.stub
: use a stubbed backend which fail at runtime when used.
These features are mutually exclusive and only one may be enabled at a time. When more than one backend is enabled, a compile-time error is emitted. For this reason, no feature is enabled by default.
The rationale is two-fold:
- It makes deliberate the choice of the TLS backend.
- It eliminates the risk of mistakenly enabling multiple backends at once.
With this approach, it’s obvious which backend is enabled when looking at the dependency declaration:
# This:
= { = "x.y.z", = ["rustls"] }
# Instead of:
= "x.y.z"
There is also no default feature to disable:
# This:
= { = "x.y.z", = ["native-tls"] }
# Instead of:
= { = "x.y.z", = false, = ["native-tls"] }
This is typically more convenient and less error-prone when re-exposing the features from another crate.
[]
= ["ironrdp-tls/rustls"]
= ["ironrdp-tls/native-tls"]
= ["ironrdp-tls/stub"]
# This:
[]
= "x.y.z"
# Instead of:
[]
= { = "x.y.z", = false }
(This is worse when the crate is exposing other default features which are typically not disabled by default.)
The stubbed backend is provided as an easy way to make the code compiles with minimal dependencies if required.