27 lines
752 B
TOML
27 lines
752 B
TOML
[package]
|
|
description = "An HTTP server using HTTP basic auth to make secure calls to nsupdate"
|
|
name = "webnsupdate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7.5"
|
|
axum-auth = { version = "0.7.0", default-features = false, features = [
|
|
"auth-basic",
|
|
] }
|
|
axum-extra = { version = "0.9.3", features = ["typed-header"] }
|
|
base64 = "0.22.1"
|
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
|
headers = "0.4.0"
|
|
http = "1.1.0"
|
|
insta = "1.38.0"
|
|
miette = { version = "7.2.0", features = ["fancy"] }
|
|
ring = { version = "0.17.8", features = ["std"] }
|
|
tokio = { version = "1.37.0", features = [
|
|
"macros",
|
|
"rt",
|
|
"process",
|
|
"io-util",
|
|
] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|