forked from webrtc-rs/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (41 loc) · 1023 Bytes
/
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
[package]
name = "stun"
version = "0.4.4"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of STUN"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/stun"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/stun"
rust-version = "1.60.0"
[features]
default = []
bench = []
[dependencies]
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
tokio = { version = "1.19", features = ["full"] }
lazy_static = "1.4"
url = "2.2"
rand = "0.8.5"
base64 = "0.13.0"
subtle = "2.4"
crc = "3.0"
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
clap = "3.2.6"
criterion = "0.3.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