-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (27 loc) · 845 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
[package]
name = "turnclient"
version = "0.5.0"
authors = ["Vitaly _Vi Shukela <[email protected]>"]
edition = "2018"
description = "Simple TURN client for UDP - traverse even strict NAT; async only"
license = "MIT/Apache-2.0"
repository = "https://github.com/vi/rust-turnclient"
keywords = ["stun", "turn", "rfc5766", "nat"]
categories = ["network-programming"]
readme = "README.md"
[dependencies]
stun_codec = "0.3.0"
bytecodec = "0.4.11"
rand = "0.8"
futures = { version = "0.3", optional = false }
tokio = { version = "1", optional = false, features=["net","time","sync"] }
trackable = "1"
fnv = "1.0.6"
slab_typesafe = "0.1.3"
anyhow = "1"
[dev-dependencies]
tokio = { version = "1", optional = false, features=["rt","macros"] }
tokio-util = { version = "0.7", features=["codec","net"]}
futuristic = "0.5"
either = "1.5.0"
bytes = "1.4.0"