-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 823 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
[package]
name = "crab_nat"
version = "0.7.1"
edition = "2021"
authors = ["Ryan Andersen <[email protected]>"]
description = "A library providing a pure Rust implementation of a client for both the NAT Port Mapping Protocol (NAT-PMP) and the Port Control Protocol (PCP)."
license = "MIT"
repository = "https://github.com/ryco117/crab_nat"
[dependencies]
bytes = "1.10.0"
displaydoc = "0.2.5"
num_enum = "0.7.3"
rand = "0.9.0"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["io-util", "net", "time"] }
tracing = { version = "0.1.41", optional = true }
[dev-dependencies]
clap = { version = "4.5.30", features = ["derive"] }
netdev = "0.32.0"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.19"
[[example]]
name = "client"
required-features = ["tracing"]