-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (42 loc) · 1006 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
50
51
52
[package]
name = "stun-server"
version = "0.1.0"
authors = ["David DiMaria <[email protected]>"]
description = "A simple STUN server written in Rust"
readme = "README.md"
keywords = ["stun", "webrtc", "server", "client"]
repository = "https://github.com/ddimaria/stun-server"
documentation = "https://docs.rs/stun-server"
license = "MIT"
edition = "2021"
[dependencies]
bytes = "1.1.0"
clap = { version = "3.1.6", features = ["derive"] }
dotenv = "0.15.0"
envy = "0.4"
lazy_static = "1.4.0"
log = "0.4.14"
pretty_env_logger = "0.4.0"
rand = "0.8.5"
serde = "1.0.136"
serde_derive = "1.0.136"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
[build-dependencies]
[dev-dependencies]
criterion = { version = "0.3", features = ["async_tokio"] }
[features]
[profile.release]
incremental = true
[lib]
name = "stun_server"
path = "src/lib.rs"
[[example]]
name = "client"
[[example]]
name = "server"
[[example]]
name = "client_server"
[[bench]]
name = "bench"
harness = false