-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (34 loc) · 844 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
[package]
name = "turnhammer"
description = "A tool to stress-test TURN (RFC 5766) servers"
version = "0.2.0"
authors = ["Vitaly _Vi Shukela <[email protected]>"]
edition = "2018"
keywords = [ "rfc5766", "turn", "networking"]
license = "MIT/Apache-2.0"
repository = "https://github.com/vi/turnhammer"
readme = "README.md"
categories = ["network-programming"]
[dependencies]
futures = {version="0.3"}
tokio = {version="1",features=["rt","net","sync","time", "macros"]}
tokio-stream = {version="0.1",features=["time"]}
stun_codec = "0.1.10"
bytecodec = "0.4.11"
rand = "0.8"
stunclient = "0.3"
turnclient = "0.4"
spin_sleep = "1"
byteorder = "1.3.1"
anyhow="1"
unzip-n = "0.1.2"
argh = "0.1.5"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
incremental = false
debug-assertions = false
codegen-units = 1
panic = 'abort'