mini-dhcp 0.5.1

A minimalistic DHCP server
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "mini-dhcp"
version = "0.5.1"
authors = ["Luis Silva <luiscomsnofim@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalistic DHCP server"
readme = "README.md"
license = "MIT"

[features]
default = ["migrate-sqlite"]
migrate-sqlite = ["rusqlite"]

[lib]
name = "mini_dhcp"
path = "src/lib.rs"

[[bin]]
name = "main"
path = "src/bin/main.rs"

[[test]]
name = "demo"
path = "tests/demo.rs"

[dependencies.anyhow]
version = "1.0.93"

[dependencies.axum]
version = "0.7.9"
features = ["macros"]

[dependencies.csv]
version = "1.3"

[dependencies.dhcproto]
version = "0.12.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.hex]
version = "0.4.3"
features = ["serde"]

[dependencies.jiff]
version = "0.1.14"

[dependencies.rand]
version = "0.8.5"

[dependencies.rusqlite]
version = "0.31"
optional = true

[dependencies.serde]
version = "1.0.215"
features = ["derive"]

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1.41.1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dev-dependencies.tempfile]
version = "3"