test: add unit tests for config, errors, and records

This commit is contained in:
2026-02-13 19:04:01 +02:00
parent 81a7935540
commit 439eaa46c0
6 changed files with 233 additions and 31 deletions

View File

@@ -9,17 +9,13 @@ edition = "2024"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
common = { path = "common" }
aws-lc-rs = "1"
base64 = "0.22"
cargo-husky = { version = "1", default-features = false, features = [
"user-hooks",
] }
claims = "0.8"
clap = { version = "4.5", features = ["derive"] }
common = { path = "common" }
miette = { version = "7", features = ["fancy"] }
rcgen = "0.14"
rstest = "0.26"
rustls = { version = "0.23", default-features = false, features = [
"std",
"tls12",
@@ -29,15 +25,22 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
strum = { version = "0.27", features = ["derive"] }
thiserror = "2"
toml = "0.9"
tokio = { version = "1", features = ["full"] }
tokio-rustls = { version = "0.26", default-features = false, features = [
"tls12",
] }
toml = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1", features = ["v4"] }
# dev
cargo-husky = { version = "1", default-features = false, features = [
"user-hooks",
] }
claims = "0.8"
rstest = "0.26"
[workspace.lints.clippy]
nursery = "warn"
pedantic = "warn"