[package]
name = "turn-client-rustls"
description = "TURN protocol in a sans-IO fashion (Rustls)"
version = "0.1.0"
authors = ["Matthew Waters <matthew@centricular.com>"]
license = "MIT OR Apache-2.0"
keywords = ["TURN"]
categories = ["network-programming", ]
documentation = "https://docs.rs/turn-client-dimpl"
edition.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
rustls.workspace = true
turn-client-proto.workspace = true
tracing = { version = "0.1", default-features = false, features = ["attributes"] }
[dev-dependencies]
api-tests = { path = "../api-tests" }
tracing = { version = "0.1",features = ["std"] }
tracing-subscriber = "0.3"
turn-server-rustls = { path = "../turn-server-rustls" }
rustls = { workspace = true, features = ["ring"] }
rustls-platform-verifier.workspace = true
rcgen = "0.14"
[features]
default = ["std"]
std = []
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] }