1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
[package]
name = "rustls-examples"
version = "0.0.1"
edition = "2021"
license = "Apache-2.0 OR ISC OR MIT"
description = "Rustls example code and tests."
publish = false
[dependencies]
async-std = { workspace = true, optional = true }
clap = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
mio = { workspace = true }
rcgen = { workspace = true }
rustls = { path = "../rustls", features = ["logging"] }
serde = { workspace = true }
tokio = { workspace = true }
rustls-native-certs = { workspace = true }
|