-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
38 lines (36 loc) · 1.03 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
[package]
name = "dhcpm"
version = "0.2.5"
edition = "2021"
authors = ["Evan Cameron <[email protected]"]
description = """
A cli for mocking DHCP messages and running rhai scripts to test DHCP servers. Aims to support v4 & v6, thought v6 is as of yet unfinished.
"""
categories = [
"network-programming",
"development-tools",
"command-line-utilities",
]
repository = "https://github.com/leshow/dhcpm"
keywords = ["dhcp", "dhcpv4", "dhcpv6", "cli"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dhcproto = "0.12.0"
anyhow = "1.0"
argh = "=0.1.7"
argh_derive = "=0.1.7"
crossbeam-channel = "0.5.1"
ctrlc = "3.1"
mac_address = "1.1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3.14", features = ["env-filter", "json"] }
rand = "0.8"
hex = "0.4"
rhai = { version = "1.5.0", optional = true }
socket2 = { version = "0.5", features = ["all"] }
pnet_datalink = "0.31.0"
# rhai-rand = { version = "0.1", optional = true }
[features]
default = []
script = ["rhai"]