-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 713 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 713 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
[package]
name = "mini-dhcp"
description = "A minimalistic DHCP server"
version = "0.5.1"
license = "MIT"
edition = "2021"
authors = ["Luis Silva <luiscomsnofim@gmail.com>"]
[features]
default = ["migrate-sqlite"]
migrate-sqlite = ["rusqlite"]
[dependencies]
rusqlite = { version = "0.31", optional = true }
dhcproto = "0.12.0"
tokio = { version = "1.41.1", features = ["full"] }
csv = "1.3"
thiserror = "2"
rand = "0.8.5"
jiff = "0.1.14"
anyhow = "1.0.93"
axum = { version = "0.7.9", features = ["macros"] }
serde = { version = "1.0.215", features = ["derive"] }
hex = { version = "0.4.3", features = ["serde"] }
futures = "0.3.31"
tracing = "0.1"
tracing-subscriber = "0.3"
[dev-dependencies]
tempfile = "3"