forked from webrtc-rs/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (44 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "turn"
version = "0.6.1"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "A pure Rust implementation of TURN"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/turn"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/turn"
rust-version = "1.63.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.21"
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] }
stun = { version = "0.4.3", path = "../stun" }
tokio = { version = "1.19", features = ["full"] }
async-trait = "0.1.56"
log = "0.4.16"
base64 = "0.21.2"
rand = "0.8.5"
ring = "0.16.20"
md-5 = "0.10.1"
thiserror = "1.0"
[dev-dependencies]
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above
env_logger = "0.9.0"
chrono = "0.4.23"
hex = "0.4.3"
clap = "3.2.6"
criterion = "0.4.0"
[features]
metrics = []
[[bench]]
name = "bench"
harness = false
[[example]]
name = "turn_client_udp"
path = "examples/turn_client_udp.rs"
bench = false
[[example]]
name = "turn_server_udp"
path = "examples/turn_server_udp.rs"
bench = false