2024-05-09 00:59:43 +02:00
|
|
|
cargo-features = ["codegen-backend"]
|
2024-10-12 22:40:46 +02:00
|
|
|
|
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-10-28 22:42:15 +01:00
|
|
|
version = "0.3.2-dev"
|
2024-05-03 20:29:10 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-26 13:23:22 +02:00
|
|
|
axum = "0.7"
|
|
|
|
axum-client-ip = "0.6"
|
|
|
|
base64 = "0.22"
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
2024-11-23 13:09:26 +01:00
|
|
|
clap-verbosity-flag = { version = "3", default-features = false, features = [
|
|
|
|
"tracing",
|
|
|
|
] }
|
2024-10-26 13:23:22 +02:00
|
|
|
http = "1"
|
|
|
|
miette = { version = "7", features = ["fancy"] }
|
|
|
|
ring = { version = "0.17", features = ["std"] }
|
2024-11-23 13:09:26 +01:00
|
|
|
tokio = { version = "1", features = ["macros", "rt", "process", "io-util"] }
|
2024-11-23 20:36:38 +01:00
|
|
|
tower-http = { version = "0.6.2", features = ["validate-request"] }
|
2024-10-26 13:23:22 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2024-05-09 00:59:43 +02:00
|
|
|
|
2024-10-12 22:40:46 +02:00
|
|
|
[dev-dependencies]
|
2024-10-26 13:23:22 +02:00
|
|
|
insta = "1"
|
2024-05-09 00:59:43 +02:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
debug = 0
|
|
|
|
codegen-backend = "cranelift"
|