Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
workspace/rust: 1.90 → 1.95
✗ CI failure Lorenz Leutgeb committed 9 days ago
commit 420af3b710bfd0663e9ad6220cb10910580bde2f
parent 9ea040ccd05e2c7f8b964d99cc1f65233f43271c
1 failed (1 total) View logs
7 files changed +10 -10
modified crates/radicle-cli/src/commands/inbox.rs
@@ -127,7 +127,7 @@ fn list_all<'a>(
            storage,
            profile,
        )?;
-
        vstacks.extend(vstack.into_iter());
+
        vstacks.extend(vstack);
    }
    Ok(vstacks)
}
modified crates/radicle-node/src/tests.rs
@@ -1289,7 +1289,7 @@ fn test_persistent_peer_reconnect_success() {
#[test]
fn test_maintain_connections() {
    // Peers alice starts out connected to.
-
    let connected = vec![
+
    let connected = [
        Peer::new("connected", [8, 8, 8, 1]),
        Peer::new("connected", [8, 8, 8, 2]),
        Peer::new("connected", [8, 8, 8, 3]),
@@ -1338,7 +1338,7 @@ fn test_maintain_connections() {
#[test]
fn test_maintain_connections_transient() {
    // Peers alice starts out connected to.
-
    let connected = vec![
+
    let connected = [
        Peer::new("connected", [8, 8, 8, 1]),
        Peer::new("connected", [8, 8, 8, 2]),
        Peer::new("connected", [8, 8, 8, 3]),
modified crates/radicle/src/cob/cache.rs
@@ -290,7 +290,7 @@ fn bump(db: &sql::Connection) -> Result<usize, Error> {

    db.execute(format!("PRAGMA user_version = {new}"))?;

-
    Ok(new as usize)
+
    Ok(new)
}

/// Update a COB object in the cache.
modified crates/radicle/src/cob/store.rs
@@ -85,7 +85,7 @@ pub trait Cob: Sized {
        };
        let mut state = Self::from_root(init, repo)?;
        for op in ops {
-
            state.op(op, [].into_iter(), repo)?;
+
            state.op(op, [], repo)?;
        }
        Ok(state)
    }
modified crates/radicle/src/node/db.rs
@@ -220,7 +220,7 @@ pub fn bump(db: &sql::Connection) -> Result<usize, Error> {

    db.execute(format!("PRAGMA user_version = {new}"))?;

-
    Ok(new as usize)
+
    Ok(new)
}

/// Migrate the database to the latest schema.
modified flake.lock
@@ -161,11 +161,11 @@
        ]
      },
      "locked": {
-
        "lastModified": 1771384185,
-
        "narHash": "sha256-KvmjUeA7uODwzbcQoN/B8DCZIbhT/Q/uErF1BBMcYnw=",
+
        "lastModified": 1778210054,
+
        "narHash": "sha256-iYINsX0BVDxTXd0z4FzDpBYHZ9fWUtwjG9cKSXwe9Tg=",
        "owner": "oxalica",
        "repo": "rust-overlay",
-
        "rev": "23dd7fa91602a68bd04847ac41bc10af1e6e2fd2",
+
        "rev": "bc83d66023d19fb301ee98772643b24b6129ef48",
        "type": "github"
      },
      "original": {
modified rust-toolchain.toml
@@ -1,4 +1,4 @@
[toolchain]
-
channel = "1.90"
+
channel = "1.95"
profile = "default"
components = [ "rust-src" ]