24 lines
879 B
TOML
24 lines
879 B
TOML
[package]
|
|
name = "pdns-tsig-key-manager"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
askama = "0.12.1"
|
|
axum = { version = "0.7.5", features = ["tracing", "multipart", "macros", "http2"] }
|
|
axum-core = { version = "0.4.3", features = ["tracing"] }
|
|
axum-extra = { version = "0.9.3", features = ["form"] }
|
|
config = "0.14.0"
|
|
http = "1.1.0"
|
|
openidconnect = "3.5.0"
|
|
reqwest = { version = "0.12.7", features = ["json"] }
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
strum_macros = "0.26.4"
|
|
time = { version = "0.3.36", features = ["local-offset", "parsing", "serde", "serde-human-readable"] }
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
url = { version = "2.5.2", features = ["serde"] }
|