webnsupdate: Init at version 0.1.0

This commit is contained in:
Jalil David Salamé Messina 2024-05-03 20:29:10 +02:00
commit 43d62fa7d6
Signed by: jalil
GPG key ID: F016B9E770737A0B
10 changed files with 2320 additions and 0 deletions

27
Cargo.toml Normal file
View file

@ -0,0 +1,27 @@
[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"] }