forked from webrtc-rs/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.05 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
53
54
55
56
57
58
[package]
name = "stun"
version = "0.6.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of STUN"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/stun"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/webrtc/tree/master/stun"
[features]
default = []
bench = []
[dependencies]
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
tokio = { version = "1.32.0", features = [
"fs",
"io-util",
"io-std",
"macros",
"net",
"parking_lot",
"rt",
"rt-multi-thread",
"sync",
"time",
] }
lazy_static = "1"
url = "2"
rand = "0.8"
base64 = "0.22.1"
subtle = "2.4"
crc = "3"
ring = "0.17"
md-5 = "0.10"
thiserror = "1"
[dev-dependencies]
tokio-test = "0.4"
clap = "3"
criterion = "0.5"
[[bench]]
name = "bench"
harness = false
[[example]]
name = "stun_client"
path = "examples/stun_client.rs"
bench = false
[[example]]
name = "stun_decode"
path = "examples/stun_decode.rs"
bench = false