mirror of
https://github.com/kristoferssolo/tls-pq-bench.git
synced 2026-03-22 00:36:21 +00:00
test: add unit tests for config, errors, and records
This commit is contained in:
17
Cargo.toml
17
Cargo.toml
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user