d26caed805
Locking 14 packages to latest compatible versions Updating addr2line v0.24.1 -> v0.24.2 Updating axum-client-ip v0.6.0 -> v0.6.1 Updating cc v1.1.23 -> v1.1.30 Updating clap v4.5.18 -> v4.5.20 Updating clap_builder v4.5.18 -> v4.5.20 Updating futures-channel v0.3.30 -> v0.3.31 Updating futures-core v0.3.30 -> v0.3.31 Updating futures-task v0.3.30 -> v0.3.31 Updating futures-util v0.3.30 -> v0.3.31 Updating gimli v0.31.0 -> v0.31.1 Updating httparse v1.9.4 -> v1.9.5 Updating object v0.36.4 -> v0.36.5 Updating once_cell v1.20.1 -> v1.20.2 Removing portable-atomic v1.9.0 Updating proc-macro2 v1.0.86 -> v1.0.87 note: pass `--verbose` to see 24 unchanged dependencies behind latest
31 lines
793 B
TOML
31 lines
793 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-dev"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7.7"
|
|
axum-client-ip = "0.6.1"
|
|
base64 = "0.22.1"
|
|
clap = { version = "4.5.20", features = ["derive", "env"] }
|
|
http = "1.1.0"
|
|
insta = "1.40.0"
|
|
miette = { version = "7.2.0", features = ["fancy"] }
|
|
ring = { version = "0.17.8", features = ["std"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
[dependencies.axum-auth]
|
|
version = "0.7.0"
|
|
default-features = false
|
|
features = ["auth-basic"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.40.0"
|
|
features = ["macros", "rt", "process", "io-util"]
|
|
|
|
[profile.dev]
|
|
debug = 0
|
|
codegen-backend = "cranelift"
|