From df6fbac931b8b8d03ac59a1e8ba365f297704461 Mon Sep 17 00:00:00 2001 From: Pawan Singh Date: Tue, 30 Jun 2026 00:50:40 -0700 Subject: [PATCH] Fix cargo fmt check in verification crate. Collapse unimplemented! to a single line so CI fmt --check passes. --- crates/verification/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/verification/src/lib.rs b/crates/verification/src/lib.rs index 8920cf0..20cb9db 100644 --- a/crates/verification/src/lib.rs +++ b/crates/verification/src/lib.rs @@ -112,9 +112,7 @@ impl Verifier for TeeVerifier { _benchmark: &Benchmark, _dvm: &dyn Dvm, ) -> VerifyOutcome { - unimplemented!( - "TEE tier is reserved; not implemented in this binding (spec/bindings/03)" - ) + unimplemented!("TEE tier is reserved; not implemented in this binding (spec/bindings/03)") } }