[package]
edition = "2024"
rust-version = "1.85.0"
name = "turn-client-dimpl"
version = "0.1.0"
authors = ["Matthew Waters <matthew@centricular.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TURN protocol in a sans-IO fashion (dimpl)"
documentation = "https://docs.rs/turn-client-dimpl"
readme = false
keywords = ["TURN"]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ystreet/turn-proto"
[features]
default = ["std"]
std = []
[lib]
name = "turn_client_dimpl"
path = "src/lib.rs"
[[test]]
name = "dimpl"
path = "tests/dimpl.rs"
[dependencies.dimpl]
version = "0.4"
[dependencies.stun-proto]
version = "2"
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
default-features = false
[dependencies.turn-client-proto]
version = "0.7.0"
[dev-dependencies.tracing]
version = "0.1"
features = ["std"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin)"]