fix: resolve all remaining clippy warnings in examples and benchmarks including unused imports, variables, empty println statements, and enum naming conventions

This commit is contained in:
floor-licker
2025-12-04 07:37:40 -05:00
parent 3742a5b864
commit 88f116511c
20 changed files with 63 additions and 63 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
for i in 0..3 {
let start = Instant::now();
match client.create_or_derive_api_key(None).await {
Ok(creds) => {
Ok(_creds) => {
let duration = start.elapsed();
setup_times.push(duration);
println!(" Run {}: ✅ API key setup in {:?}", i+1, duration);