-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 825 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 825 Bytes
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
[package]
name = "stun-format"
version = "1.0.1"
authors = ["pradt2"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/pradt2/stun-format"
license = "MIT"
description = "No-std parser for all RFCs STUN messages"
keywords = ["stun", "stun-parser", "zero-copy", "io"]
categories = ["no-std", "network-programming", "data-structures"]
[features]
rfc3489 = []
rfc5389 = []
rfc5245 = []
rfc5780 = []
rfc5766 = []
rfc8489 = []
rfc8445 = []
rfc8656 = []
rfc6679 = []
rfc7635 = []
rfc7982 = []
rfc8016 = []
rfc6062 = []
iana = ["rfc5780", "rfc8489", "rfc8445", "rfc8656", "rfc6679", "rfc7635", "rfc7982", "rfc8016", "rfc6062"]
fmt = []
default = ["iana"]
[dependencies]
r-ex = { version = "1.0.1", features = ["carve", "endian", "splice", "from-ref", "from-arr"] }
stun-bytes = { version = "1.0.1" }