-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.28 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
[package]
name = "dhcpd-api"
description = "A REST API that serves information from ISC DHCPd leases"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/dylanwh/dhcpd-api"
authors = ["Dylan Hardison <dylan@hardison.net>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.4"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.6", features = ["derive"] }
dirs = "5.0.1"
nibble_vec = "0.1.0"
nom = "7.1.3"
notify = { version = "6.1.1", default-features = false, features = ["fsevent-sys", "macos_kqueue"] }
quick-xml = { version = "0.30.0", features = ["serde", "async-tokio", "serde-types"] }
radix_trie = { version = "0.2.1", features = ["serde"] }
reqwest = { version = "0.11.22", default-features = false, features = ["tokio-rustls", "rustls", "hyper-rustls", "rustls-tls", "serde_json"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = { version = "1.0.107", features = ["indexmap", "preserve_order"] }
thiserror = "1.0.56"
tikv-jemallocator = "0.5.4"
tokio = { version = "1.33.0", features = ["full"] }
tokio-ping = "0.3.0"
tokio-util = { version = "0.7.10", features = ["rt"] }
tracing = { version = "0.1.40", features = ["log", "async-await"] }