2024-05-09 00:59:43 +02:00
|
|
|
cargo-features = ["codegen-backend"]
|
2024-05-03 20:29:10 +02:00
|
|
|
[package]
|
|
|
|
description = "An HTTP server using HTTP basic auth to make secure calls to nsupdate"
|
|
|
|
name = "webnsupdate"
|
2024-06-02 15:52:49 +02:00
|
|
|
version = "0.3.0-dev"
|
2024-05-03 20:29:10 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-12 03:42:55 +02:00
|
|
|
axum = "0.7.7"
|
|
|
|
axum-client-ip = "0.6.1"
|
2024-05-03 20:29:10 +02:00
|
|
|
base64 = "0.22.1"
|
2024-10-12 03:42:55 +02:00
|
|
|
clap = { version = "4.5.20", features = ["derive", "env"] }
|
2024-05-03 20:29:10 +02:00
|
|
|
http = "1.1.0"
|
2024-10-12 03:42:55 +02:00
|
|
|
insta = "1.40.0"
|
2024-05-03 20:29:10 +02:00
|
|
|
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"] }
|
2024-05-09 00:59:43 +02:00
|
|
|
|
|
|
|
[dependencies.axum-auth]
|
|
|
|
version = "0.7.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["auth-basic"]
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
2024-10-12 03:42:55 +02:00
|
|
|
version = "1.40.0"
|
2024-05-09 00:59:43 +02:00
|
|
|
features = ["macros", "rt", "process", "io-util"]
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
debug = 0
|
|
|
|
codegen-backend = "cranelift"
|