mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks failed
CI / Check formatting (push) Has been cancelled
CI / Check typos (push) Has been cancelled
Coverage / Coverage Report (push) Has been cancelled
Release crates / Open release PR (push) Has been cancelled
Release crates / Release crates (push) Has been cancelled
CI / Fuzzing (push) Has been cancelled
CI / Web Client (push) Has been cancelled
CI / FFI (push) Has been cancelled
CI / Success (push) Has been cancelled
CI / Checks [linux] (push) Has been cancelled
CI / Checks [macos] (push) Has been cancelled
CI / Checks [windows] (push) Has been cancelled
This allows client applications to verify details of the certificate, possibly with the user, when connecting to a server using TLS.
32 lines
923 B
TOML
32 lines
923 B
TOML
[package]
|
|
name = "ironrdp-tls"
|
|
version = "0.1.4"
|
|
readme = "README.md"
|
|
description = "TLS boilerplate common with most IronRDP clients"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
test = false
|
|
|
|
[features]
|
|
default = [] # No default feature, the user must choose a TLS backend by enabling the appropriate feature.
|
|
rustls = ["dep:tokio-rustls", "dep:x509-cert", "tokio/io-util"]
|
|
native-tls = ["dep:tokio-native-tls", "dep:x509-cert", "tokio/io-util"]
|
|
stub = []
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.47" }
|
|
x509-cert = { version = "0.2", default-features = false, features = ["std"], optional = true } # public
|
|
tokio-native-tls = { version = "0.3", optional = true } # public
|
|
tokio-rustls = { version = "0.26", optional = true } # public
|
|
|
|
[lints]
|
|
workspace = true
|
|
|