-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
42 lines (37 loc) · 1.11 KB
/
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
[package]
name = "dhcproto"
version = "0.13.0-alpha"
authors = [
"Ian Laidlaw <[email protected]>",
"Evan Cameron <[email protected]>",
]
edition = "2021"
description = """
A DHCP parser and encoder for DHCPv4/DHCPv6. `dhcproto` aims to be a functionally complete DHCP implementation.
"""
categories = ["network-programming", "encoding", "parser-implementations"]
repository = "https://github.com/bluecatengineering/dhcproto"
keywords = ["dhcp", "dhcpv4", "dhcpv6"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
rand = "0.8"
serde = { version = "1.0", features = ["derive"], optional = true }
hex = "0.4.3"
hickory-proto = { version = "0.24.1", default-features = false }
url = "2.2.2"
dhcproto-macros = { path = "./dhcproto-macros", version = "0.1.0" }
ipnet = "2.5"
[features]
default = []
serde = ["dep:serde", "url/serde", "ipnet/serde", "hickory-proto/serde-config"]
[dev-dependencies]
criterion = "0.4.0"
serde_json = "1.0"
[[bench]]
name = "decode"
harness = false
[[bench]]
name = "encode"
harness = false