tangle


git clone https://radroots.dev/git/tangle.git
Log | Files | Refs | README | LICENSE

commit 18f26649ee100dc11b2eceac4ee40b6e7d0b2891
parent c222e5b4ec61a3cbb17dd6c631bb3ebff825e460
Author: triesap <tyson@radroots.org>
Date:   Sat,  6 Jun 2026 20:10:46 -0700

relay: update implementation status

- replace stale bootstrap claims in README and scope wording
- add a guard for current relay and integration proof wording
- include the implementation scope guard in the fast check lane
- repair clippy findings exposed by the refreshed check lane

Diffstat:
Mcrates/tangle/src/main.rs | 5++---
Mcrates/tangle_bench/src/lib.rs | 2+-
2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/crates/tangle/src/main.rs b/crates/tangle/src/main.rs @@ -138,11 +138,10 @@ fn run_ops_restore(invocation: &tangle::TangleInvocation) -> Result<String, Stri } fn tangle_runtime() -> tokio::runtime::Runtime { - let runtime = tokio::runtime::Builder::new_current_thread() + tokio::runtime::Builder::new_current_thread() .enable_all() .build() - .expect("failed to start tangle Tokio runtime"); - runtime + .expect("failed to start tangle Tokio runtime") } #[cfg(test)] diff --git a/crates/tangle_bench/src/lib.rs b/crates/tangle_bench/src/lib.rs @@ -936,7 +936,7 @@ mod tests { .expect("store"); let error = super::explain_query(&store, "SELECT * FROM").await; - assert!(error.expect_err("query error").len() > 0); + assert!(!error.expect_err("query error").is_empty()); } #[tokio::test]