Jalil David Salamé Messina
b7fbb65438
Release version 0.3.0 Main features: - persist last IP checked to ensure DNS records can be served upon restart - end-to-end testing of the NixOS module ensures most changes will not result in a broken DNS server
35 lines
796 B
TOML
35 lines
796 B
TOML
cargo-features = ["codegen-backend"]
|
|
|
|
[package]
|
|
description = "An HTTP server using HTTP basic auth to make secure calls to nsupdate"
|
|
name = "webnsupdate"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
axum-auth = { version = "0.7", default-features = false, features = [
|
|
"auth-basic",
|
|
] }
|
|
axum-client-ip = "0.6"
|
|
base64 = "0.22"
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
clap-verbosity-flag = "2"
|
|
http = "1"
|
|
miette = { version = "7", features = ["fancy"] }
|
|
ring = { version = "0.17", features = ["std"] }
|
|
tokio = { version = "1", features = [
|
|
"macros",
|
|
"rt",
|
|
"process",
|
|
"io-util",
|
|
] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
insta = "1"
|
|
|
|
[profile.dev]
|
|
debug = 0
|
|
codegen-backend = "cranelift"
|