rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5 heartwoode60c034163e03b50436b4b26f885e6b0f5e534e5
{
"request": "trigger",
"version": 1,
"event_type": "push",
"repository": {
"id": "rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5",
"name": "heartwood",
"description": "Radicle Heartwood Protocol & Stack",
"private": false,
"default_branch": "master",
"delegates": [
"did:key:z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT",
"did:key:z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW",
"did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
"did:key:z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz",
"did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz"
]
},
"pusher": {
"id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
"alias": null
},
"before": "e60c034163e03b50436b4b26f885e6b0f5e534e5",
"after": "e60c034163e03b50436b4b26f885e6b0f5e534e5",
"branch": "master",
"commits": [
"e60c034163e03b50436b4b26f885e6b0f5e534e5"
]
}
{
"response": "triggered",
"run_id": {
"id": "743d92db-6cd3-4ec3-a8b4-1e88e9d3234b"
},
"info_url": "https://cci.rad.levitte.org//743d92db-6cd3-4ec3-a8b4-1e88e9d3234b.html"
}
Started at: 2026-08-12 15:07:35.478112+02:00
Commands:
$ rad clone rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5 .
✓ Creating checkout in ./...
✓ Remote cloudhead@z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT added
✓ Remote-tracking branch cloudhead@z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT/master created for z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT
✓ Remote cloudhead@z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW added
✓ Remote-tracking branch cloudhead@z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW/master created for z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW
✓ Remote fintohaps@z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM added
✓ Remote-tracking branch fintohaps@z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM/master created for z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM
✓ Remote erikli@z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz added
✓ Remote-tracking branch erikli@z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz/master created for z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz
✓ Remote lorenz@z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz added
✓ Remote-tracking branch lorenz@z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz/master created for z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz
✓ Repository successfully cloned under /opt/radcis/ci.rad.levitte.org/cci/state/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/
╭────────────────────────────────────╮
│ heartwood │
│ Radicle Heartwood Protocol & Stack │
│ 188 issues · 41 patches │
╰────────────────────────────────────╯
Run `cd ./.` to go to the repository directory.
Exit code: 0
$ git config advice.detachedHead false
Exit code: 0
$ git checkout e60c034163e03b50436b4b26f885e6b0f5e534e5
HEAD is now at e60c0341 protocol/service: Check visibility on `Subscribe`
Exit code: 0
$ git show e60c034163e03b50436b4b26f885e6b0f5e534e5
commit e60c034163e03b50436b4b26f885e6b0f5e534e5
Author: Daniel Norman <daniel@norman.life>
Date: Thu Jul 30 12:24:19 2026 +0200
protocol/service: Check visibility on `Subscribe`
When `Service::handle_message` handles `Message::Subscribe`, constraints
regarding visibility of repositories are not considered, this leads to
leaking RIDs of private repositories.
Add a corresponding check.
Add a test to verify that reference announcements relayed via subscribe
correctly apply visibility filtering, there by ensuring references of
private repositories are only propagated to nodes on the allow list.
The test regarding deduplication needs a fix: Ensure that all mock
repositories are public and in storage so that they do not
get filtered out in case of unknown visiblity.
Co-authored-by: Lorenz Leutgeb <lorenz.leutgeb@radicle.dev>
diff --git a/crates/radicle-node/src/tests.rs b/crates/radicle-node/src/tests.rs
index 60dd40eb..9a463473 100644
--- a/crates/radicle-node/src/tests.rs
+++ b/crates/radicle-node/src/tests.rs
@@ -482,13 +482,23 @@ fn announcement_rebroadcast() {
}
#[test]
-fn announcement_rebroadcast_duplicates() {
+fn announcement_rebroadcast_deduplicates() {
let mut cid = Peer::cid();
let mut amy = Peer::amy();
let bob = Peer::bob();
let dan = Peer::dan();
let rids = arbitrary::set::<RepoId>(3..=3);
+ for rid in &rids {
+ let mut repo = r#gen::<MockRepository>(1);
+ repo.doc.doc = repo
+ .doc
+ .doc
+ .with_edits(|doc| doc.visibility = Visibility::Public)
+ .unwrap();
+ amy.storage_mut().repos.insert(rid.clone(), repo);
+ }
+
amy.connect_to(&bob);
amy.receive(*bob.nid(), cid.node_announcement());
@@ -803,6 +813,68 @@ fn refs_announcement_relay_private() {
);
}
+#[test]
+fn refs_announcement_subscribe_private() {
+ let tmp = tempfile::tempdir().unwrap();
+ let mut amy = Peer::amy();
+ let cid = Peer::with_storage(
+ "cid",
+ CID,
+ Storage::open(tmp.path().join("cid"), fixtures::user()).unwrap(),
+ );
+
+ let bob = {
+ let signer = SigningKey::mock(BOB as usize);
+ let storage = fixtures::storage(tmp.path().join("bob"), &signer).unwrap();
+
+ Peer::with_storage("bob", BOB, storage)
+ };
+
+ // Amy holds the repo, and it isn't visible to Cid.
+ let repo = {
+ let mut repo = r#gen::<MockRepository>(1);
+ repo.doc.doc = repo
+ .doc
+ .doc
+ .with_edits(|doc| {
+ doc.visibility = Visibility::Private {
+ allow: [(*amy.nid()).into(), (*bob.nid()).into()].into(),
+ };
+ })
+ .unwrap();
+ repo
+ };
+ let private = repo.id;
+
+ amy.seed(&repo.id, policy::Scope::All).unwrap();
+ amy.storage_mut().repos.insert(private, repo);
+
+ amy.connect_to(&bob);
+ amy.connect_to(&cid);
+
+ // Amy stores Bob's announcement *before* Cid subscribes.
+ amy.receive(*bob.nid(), bob.refs_announcement(private));
+ amy.messages(*cid.nid()).for_each(drop);
+
+ // Cid subscribes with the default filter, which matches every repo.
+ amy.receive(*cid.nid(), Message::Subscribe(Subscribe::all()));
+
+ let private_refs_announcement = amy.messages(*cid.nid()).find(|m| {
+ matches!(
+ m,
+ Message::Announcement(Announcement {
+ message: AnnouncementMessage::Refs(RefsAnnouncement { rid, .. }),
+ ..
+ }) if *rid == private
+ )
+ });
+ assert_matches!(
+ private_refs_announcement,
+ None,
+ "The refs announcement for private repo {private} is not sent to Cid"
+ );
+}
+
/// Even if Amy is not tracking Bob, Amy will fetch Bob's refs for a repo she doesn't have.
#[test]
fn refs_announcement_fetch_trusted_no_inventory() {
diff --git a/crates/radicle-protocol/src/service.rs b/crates/radicle-protocol/src/service.rs
index 75a56bad..be4954b5 100644
--- a/crates/radicle-protocol/src/service.rs
+++ b/crates/radicle-protocol/src/service.rs
@@ -1840,6 +1840,21 @@ where
if ann.node == *remote {
continue;
}
+ // Only send a `RefsAnnouncement` for repositories that are visible to
+ // the peer. If we do not have the repository, we can not know whether
+ // it should be visible to the peer or not, so we default to `false`.
+ if let AnnouncementMessage::Refs(RefsAnnouncement { rid, .. }) =
+ &ann.message
+ && !self
+ .storage
+ .get(*rid)
+ .ok()
+ .flatten()
+ .map(|doc| doc.is_visible_to(&(*remote).into()))
+ .unwrap_or(false)
+ {
+ continue;
+ }
// Only send messages if we're a relay, or it's our own messages.
if relay || ann.node == local {
self.outbox.write(peer, ann.into());
Exit code: 0
shell: 'export RUSTDOCFLAGS=''-D warnings'' cargo --version rustc --version cargo fmt --check cargo clippy --all-targets --workspace -- --deny warnings cargo build --all-targets --workspace cargo doc --workspace --no-deps --all-features cargo test --workspace --no-fail-fast '
Commands:
$ podman run --name 743d92db-6cd3-4ec3-a8b4-1e88e9d3234b -v /opt/radcis/ci.rad.levitte.org/cci/state/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/s:/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/s:ro -v /opt/radcis/ci.rad.levitte.org/cci/state/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w:/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w -w /743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w -v /opt/radcis/ci.rad.levitte.org/.radicle:/${id}/.radicle:ro -e RAD_HOME=/${id}/.radicle rust:trixie bash /743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/s/script.sh
+ export 'RUSTDOCFLAGS=-D warnings'
+ RUSTDOCFLAGS='-D warnings'
+ cargo --version
info: syncing channel updates for '1.97.1-x86_64-unknown-linux-gnu'
info: latest update on 2026-07-16, rust version 1.97.1 (8bab26f4f 2026-07-14)
info: downloading component 'cargo'
info: downloading component 'clippy'
info: downloading component 'rust-docs'
info: downloading component 'rust-src'
info: downloading component 'rust-std'
info: downloading component 'rustc'
info: downloading component 'rustfmt'
info: installing component 'cargo'
info: installing component 'clippy'
info: installing component 'rust-docs'
info: installing component 'rust-src'
info: installing component 'rust-std'
info: installing component 'rustc'
info: installing component 'rustfmt'
cargo 1.97.1 (c980f4866 2026-06-30)
+ rustc --version
rustc 1.97.1 (8bab26f4f 2026-07-14)
+ cargo fmt --check
+ cargo clippy --all-targets --workspace -- --deny warnings
Updating crates.io index
Downloading crates ...
Downloaded gix-config-value v0.18.0
Downloaded const-str v0.4.3
Downloaded displaydoc v0.2.5
Downloaded rand_chacha v0.3.1
Downloaded rfc6979 v0.4.0
Downloaded curve25519-dalek-derive v0.1.1
Downloaded dyn-clone v1.0.20
Downloaded cpufeatures v0.2.17
Downloaded rustc_version v0.4.1
Downloaded escargot v0.5.15
Downloaded der v0.7.10
Downloaded quick-error v1.2.3
Downloaded signature v2.2.0
Downloaded gix-shallow v0.12.0
Downloaded diff v0.1.13
Downloaded crossbeam-utils v0.8.21
Downloaded rustversion v1.0.22
Downloaded secrecy v0.10.3
Downloaded crc32fast v1.5.0
Downloaded ec25519 v0.1.0
Downloaded getrandom v0.4.3
Downloaded rand_chacha v0.9.0
Downloaded cipher v0.4.4
Downloaded const-oid v0.9.6
Downloaded quote v1.0.45
Downloaded rustc-demangle v0.1.27
Downloaded clap_complete v4.6.0
Downloaded addr2line v0.25.1
Downloaded crypto-bigint v0.5.5
Downloaded dunce v1.0.5
Downloaded crossbeam-channel v0.5.15
Downloaded crossterm v0.29.0
Downloaded ctr v0.9.2
Downloaded derive_more-impl v2.1.1
Downloaded clap v4.6.0
Downloaded cyphergraphy v0.3.1
Downloaded document-features v0.2.12
Downloaded ed25519 v1.5.3
Downloaded convert_case v0.10.0
Downloaded data-encoding-macro-internal v0.1.17
Downloaded ecdsa v0.16.9
Downloaded crypto-common v0.1.7
Downloaded gix-glob v0.26.0
Downloaded rand v0.8.5
Downloaded rand v0.9.2
Downloaded rsa v0.9.10
Downloaded digest v0.10.7
Downloaded gix-refspec v0.41.0
Downloaded curve25519-dalek v4.1.3
Downloaded fastrand v2.3.0
Downloaded ed25519 v2.2.3
Downloaded rustix v1.1.4
Downloaded cypheraddr v0.4.1
Downloaded data-encoding-macro v0.1.19
Downloaded gix-protocol v0.61.0
Downloaded env_logger v0.11.9
Downloaded ghash v0.5.1
Downloaded errno v0.3.14
Downloaded fast-glob v0.3.3
Downloaded scopeguard v1.2.0
Downloaded ryu v1.0.23
Downloaded semver v1.0.27
Downloaded getrandom v0.3.4
Downloaded gix-commitgraph v0.37.0
Downloaded env_filter v1.0.0
Downloaded gix-command v0.9.0
Downloaded serde_core v1.0.228
Downloaded schemars v1.2.1
Downloaded ref-cast-impl v1.0.25
Downloaded sharded-slab v0.1.7
Downloaded salsa20 v0.10.2
Downloaded sha1 v0.10.6
Downloaded scrypt v0.11.0
Downloaded signal-hook-registry v1.4.8
Downloaded sem_safe v0.2.1
Downloaded test-log v0.2.19
Downloaded snapbox-macros v1.1.0
Downloaded gix-error v0.2.3
Downloaded serde_json v1.0.149
Downloaded systemd-journal-logger v2.2.2
Downloaded same-file v1.0.6
Downloaded serde_derive_internals v0.29.1
Downloaded signal-hook-mio v0.2.5
Downloaded thiserror v1.0.69
Downloaded sval_buffer v2.17.0
Downloaded serde-untagged v0.1.9
Downloaded serde_derive v1.0.228
Downloaded rand_core v0.6.4
Downloaded shlex v1.3.0
Downloaded serde_spanned v1.0.4
Downloaded gix-actor v0.41.0
Downloaded gix-hashtable v0.15.0
Downloaded gix-quote v0.7.1
Downloaded equivalent v1.0.2
Downloaded ssh-encoding v0.2.0
Downloaded serde_fmt v1.1.0
Downloaded subtle v2.6.1
Downloaded siphasher v1.0.2
Downloaded socks5-client v0.4.3
Downloaded rand_core v0.9.5
Downloaded test-log-macros v0.2.19
Downloaded timeago v0.4.2
Downloaded schemars_derive v1.2.1
Downloaded spki v0.7.3
Downloaded ssh-cipher v0.2.0
Downloaded syn v2.0.117
Downloaded synstructure v0.13.2
Downloaded stable_deref_trait v1.2.1
Downloaded sval_json v2.17.0
Downloaded thread_local v1.1.9
Downloaded data-encoding v2.10.0
Downloaded gix-prompt v0.15.0
Downloaded gix-revwalk v0.31.0
Downloaded gix-url v0.36.0
Downloaded thiserror-impl v2.0.18
Downloaded unicode-ident v1.0.24
Downloaded sval v2.17.0
Downloaded sval_dynamic v2.17.0
Downloaded sval_ref v2.17.0
Downloaded form_urlencoded v1.2.2
Downloaded gix-chunk v0.7.1
Downloaded fnv v1.0.7
Downloaded itoa v1.0.17
Downloaded gix-negotiate v0.31.0
Downloaded spin v0.9.8
Downloaded rand_xorshift v0.4.0
Downloaded shell-words v1.1.1
Downloaded sval_serde v2.17.0
Downloaded colorchoice v1.0.5
Downloaded faster-hex v0.10.0
Downloaded generic-array v0.14.7
Downloaded hex-literal v1.1.0
Downloaded simd-adler32 v0.3.8
Downloaded snapbox v1.2.2
Downloaded sval_nested v2.17.0
Downloaded siphasher v0.3.11
Downloaded sval_fmt v2.17.0
Downloaded normalize-line-endings v0.3.0
Downloaded strsim v0.11.1
Downloaded idna_adapter v1.2.1
Downloaded adler2 v2.0.1
Downloaded ref-cast v1.0.25
Downloaded clap_lex v1.1.0
Downloaded gix-sec v0.14.0
Downloaded opaque-debug v0.3.1
Downloaded bit-set v0.8.0
Downloaded gix-utils v0.3.2
Downloaded nonempty v0.12.0
Downloaded structured-logger v1.0.5
Downloaded thiserror v2.0.18
Downloaded aead v0.5.2
Downloaded is_terminal_polyfill v1.70.2
Downloaded zerofrom v0.1.6
Downloaded base32 v0.4.0
Downloaded cfg-if v1.0.4
Downloaded tree-sitter-json v0.24.8
Downloaded rusty-fork v0.3.1
Downloaded signal-hook v0.3.18
Downloaded tempfile v3.27.0
Downloaded socket2 v0.5.10
Downloaded signature v1.6.4
Downloaded tinyvec_macros v0.1.1
Downloaded gix-lock v23.0.0
Downloaded noise-framework v0.4.1
Downloaded outref v0.5.2
Downloaded phf_shared v0.11.3
Downloaded referencing v0.30.0
Downloaded sec1 v0.7.3
Downloaded tinystr v0.8.2
Downloaded num-rational v0.4.2
Downloaded pkcs8 v0.10.2
Downloaded find-msvc-tools v0.1.9
Downloaded email_address v0.2.9
Downloaded gix-packetline v0.21.3
Downloaded gix-revision v0.45.0
Downloaded streaming-iterator v0.1.9
Downloaded jobserver v0.1.34
Downloaded borrow-or-share v0.2.4
Downloaded sha2 v0.10.9
Downloaded uuid-simd v0.8.0
Downloaded nonempty v0.9.0
Downloaded signals_receipts v0.2.5
Downloaded thiserror-impl v1.0.69
Downloaded ssh-agent-lib v0.6.0
Downloaded match-lookup v0.1.2
Downloaded keccak v0.1.6
Downloaded erased-serde v0.4.10
Downloaded ff v0.13.1
Downloaded gix-credentials v0.38.0
Downloaded gix-fs v0.21.1
Downloaded pkcs1 v0.7.5
Downloaded smallvec v1.15.1
Downloaded multibase v0.9.2
Downloaded chacha20 v0.9.1
Downloaded gix-hash v0.25.0
Downloaded maybe-async v0.2.10
Downloaded pin-project-lite v0.2.17
Downloaded either v1.15.0
Downloaded base16ct v0.2.0
Downloaded bcrypt-pbkdf v0.10.0
Downloaded block-buffer v0.10.4
Downloaded gix-traverse v0.57.0
Downloaded humantime v2.3.0
Downloaded qcheck v1.0.0
Downloaded tree-sitter-language v0.1.7
Downloaded tree-sitter-toml-ng v0.6.0
Downloaded sqlite v0.37.0
Downloaded sqlite3-sys v0.18.0
Downloaded unarray v0.1.4
Downloaded tree-sitter-html v0.23.2
Downloaded anstyle v1.0.14
Downloaded autocfg v1.5.0
Downloaded num v0.4.3
Downloaded p256 v0.13.2
Downloaded serde v1.0.228
Downloaded utf8_iter v1.0.4
Downloaded yoke v0.8.1
Downloaded tree-sitter-highlight v0.24.7
Downloaded clap_derive v4.6.0
Downloaded colored v2.2.0
Downloaded console v0.16.3
Downloaded gix-features v0.48.0
Downloaded similar v3.1.1
Downloaded gix-path v0.12.0
Downloaded hmac v0.12.1
Downloaded gix-object v0.60.0
Downloaded anstyle-query v1.1.5
Downloaded yoke-derive v0.8.1
Downloaded derive_more v2.1.1
Downloaded fraction v0.15.3
Downloaded tree-sitter-css v0.23.2
Downloaded lazy_static v1.5.0
Downloaded value-bag-serde1 v1.12.0
Downloaded anyhow v1.0.102
Downloaded ed25519-dalek v2.2.0
Downloaded base64ct v1.8.3
Downloaded num-cmp v0.1.0
Downloaded gix-tempfile v23.0.0
Downloaded getrandom v0.2.17
Downloaded zeroize v1.9.0
Downloaded potential_utf v0.1.4
Downloaded gix-odb v0.80.0
Downloaded num-complex v0.4.6
Downloaded fluent-uri v0.3.2
Downloaded value-bag v1.12.0
Downloaded block-padding v0.3.3
Downloaded inout v0.1.4
Downloaded utf8parse v0.2.2
Downloaded base256emoji v1.0.2
Downloaded gix-validate v0.11.1
Downloaded typeid v1.0.3
Downloaded value-bag-sval2 v1.12.0
Downloaded hash32 v0.3.1
Downloaded unicode-display-width v0.3.0
Downloaded lock_api v0.4.14
Downloaded num-integer v0.1.46
Downloaded uuid v1.22.0
Downloaded log v0.4.29
Downloaded nu-ansi-term v0.50.3
Downloaded universal-hash v0.5.1
Downloaded bitflags v2.11.0
Downloaded wait-timeout v0.2.1
Downloaded tracing-core v0.1.36
Downloaded elliptic-curve v0.13.8
Downloaded gix-diff v0.63.0
Downloaded heck v0.5.0
Downloaded pbkdf2 v0.12.2
Downloaded qcheck-macros v1.0.0
Downloaded unit-prefix v0.5.2
Downloaded anstyle-parse v0.2.7
Downloaded anstyle-parse v1.0.0
Downloaded num-traits v0.2.19
Downloaded gix-pack v0.70.0
Downloaded icu_normalizer v2.1.1
Downloaded num-iter v0.1.45
Downloaded amplify_syn v2.0.1
Downloaded icu_locale_core v2.1.1
Downloaded tracing-log v0.2.0
Downloaded human-panic v2.0.6
Downloaded polyval v0.6.2
Downloaded chacha20poly1305 v0.10.1
Downloaded base64 v0.22.1
Downloaded primeorder v0.13.6
Downloaded pastey v0.2.1
Downloaded fancy-regex v0.14.0
Downloaded bytes v1.11.1
Downloaded version_check v0.9.5
Downloaded zerofrom-derive v0.1.6
Downloaded anstream v0.6.21
Downloaded byteorder v1.5.0
Downloaded gix-ref v0.63.0
Downloaded ppv-lite86 v0.2.21
Downloaded toml_datetime v0.7.5+spec-1.1.0
Downloaded bit-vec v0.8.0
Downloaded phf v0.11.3
Downloaded arc-swap v1.9.1
Downloaded cyphernet v0.5.4
Downloaded cc v1.2.57
Downloaded percent-encoding v2.3.2
Downloaded parking_lot v0.12.5
Downloaded unicode-segmentation v1.12.0
Downloaded gix-trace v0.1.19
Downloaded matchers v0.2.0
Downloaded memmap2 v0.9.10
Downloaded ascii v1.1.0
Downloaded vsimd v0.8.0
Downloaded anstream v1.0.0
Downloaded blowfish v0.9.1
Downloaded zerovec-derive v0.11.2
Downloaded ahash v0.8.12
Downloaded ssh-key v0.6.7
Downloaded flate2 v1.1.9
Downloaded walkdir v2.5.0
Downloaded yansi v1.0.1
Downloaded pkg-config v0.3.32
Downloaded group v0.13.0
Downloaded emojis v0.6.4
Downloaded parking_lot_core v0.9.12
Downloaded litemap v0.8.1
Downloaded amplify_derive v4.0.1
Downloaded cbc v0.1.2
Downloaded toml v0.9.12+spec-1.1.0
Downloaded tree-sitter-go v0.23.4
Downloaded pem-rfc7468 v0.7.0
Downloaded toml_writer v1.0.7+spec-1.1.0
Downloaded indicatif v0.18.4
Downloaded base-x v0.2.11
Downloaded mio v1.1.1
Downloaded zerovec v0.11.5
Downloaded amplify v4.9.0
Downloaded litrs v1.0.0
Downloaded idna v1.1.0
Downloaded backtrace v0.3.76
Downloaded amplify_num v0.5.3
Downloaded lexopt v0.3.2
Downloaded unicode-normalization v0.1.25
Downloaded memchr v2.8.0
Downloaded icu_provider v2.1.1
Downloaded clap_builder v4.6.0
Downloaded hashbrown v0.16.1
Downloaded libm v0.2.16
Downloaded inquire v0.9.4
Downloaded poly1305 v0.8.0
Downloaded zmij v1.0.21
Downloaded bytecount v0.6.9
Downloaded bytesize v2.3.1
Downloaded writeable v0.6.2
Downloaded git2 v0.21.0
Downloaded aes-gcm v0.10.3
Downloaded aes v0.8.4
Downloaded tracing-subscriber v0.3.23
Downloaded proc-macro2 v1.0.106
Downloaded portable-atomic v1.13.1
Downloaded sysinfo v0.37.2
Downloaded gimli v0.32.3
Downloaded gix-transport v0.57.0
Downloaded iana-time-zone v0.1.65
Downloaded regex v1.12.3
Downloaded once_cell v1.21.4
Downloaded tree-sitter-md v0.3.2
Downloaded bloomy v1.2.0
Downloaded icu_properties v2.1.2
Downloaded bstr v1.12.1
Downloaded object v0.37.3
Downloaded tinyvec v1.11.0
Downloaded icu_normalizer_data v2.1.1
Downloaded tokio v1.50.0
Downloaded libz-sys v1.1.25
Downloaded jsonschema v0.30.0
Downloaded miniz_oxide v0.8.9
Downloaded pretty_assertions v1.4.1
Downloaded zerotrie v0.2.3
Downloaded icu_collections v2.1.1
Downloaded url v2.5.8
Downloaded heapless v0.8.0
Downloaded indexmap v2.13.0
Downloaded num-bigint-dig v0.8.6
Downloaded num-bigint v0.4.6
Downloaded base64 v0.21.7
Downloaded prodash v31.0.0
Downloaded jiff-static v0.2.23
Downloaded typenum v1.20.1
Downloaded p521 v0.13.3
Downloaded p384 v0.13.1
Downloaded itertools v0.14.0
Downloaded syn v1.0.109
Downloaded aho-corasick v1.1.4
Downloaded proptest v1.10.0
Downloaded tree-sitter v0.24.7
Downloaded tree-sitter-c v0.23.4
Downloaded icu_properties_data v2.1.2
Downloaded tree-sitter-python v0.23.6
Downloaded zlib-rs v0.6.5
Downloaded vcpkg v0.2.15
Downloaded regex-syntax v0.8.10
Downloaded chrono v0.4.44
Downloaded zerocopy v0.8.42
Downloaded unicode-width v0.2.2
Downloaded tree-sitter-rust v0.23.3
Downloaded tracing v0.1.44
Downloaded tree-sitter-bash v0.23.3
Downloaded tree-sitter-ruby v0.23.1
Downloaded regex-automata v0.4.14
Downloaded sha1-checked v0.10.0
Downloaded libc v0.2.183
Downloaded sha3 v0.10.8
Downloaded tree-sitter-typescript v0.23.2
Downloaded jiff v0.2.23
Downloaded sqlite3-src v0.7.0
Downloaded linux-raw-sys v0.12.1
Downloaded gix-date v0.15.3
Downloaded libgit2-sys v0.18.4+1.9.3
Compiling libc v0.2.183
Compiling proc-macro2 v1.0.106
Compiling unicode-ident v1.0.24
Compiling quote v1.0.45
Compiling serde_core v1.0.228
Checking cfg-if v1.0.4
Compiling serde v1.0.228
Compiling version_check v0.9.5
Compiling generic-array v0.14.7
Compiling syn v2.0.117
Checking getrandom v0.2.17
Checking typenum v1.20.1
Checking rand_core v0.6.4
Checking memchr v2.8.0
Compiling shlex v1.3.0
Compiling find-msvc-tools v0.1.9
Checking subtle v2.6.1
Compiling jobserver v0.1.34
Checking const-oid v0.9.6
Checking smallvec v1.15.1
Checking regex-syntax v0.8.10
Compiling cc v1.2.57
Checking aho-corasick v1.1.4
Checking cpufeatures v0.2.17
Compiling thiserror v2.0.18
Checking fastrand v2.3.0
Checking regex-automata v0.4.14
Compiling parking_lot_core v0.9.12
Checking scopeguard v1.2.0
Checking lock_api v0.4.14
Checking bitflags v2.11.0
Checking parking_lot v0.12.5
Checking stable_deref_trait v1.2.1
Compiling typeid v1.0.3
Compiling erased-serde v0.4.10
Checking gix-trace v0.1.19
Checking tinyvec_macros v0.1.1
Checking itoa v1.0.17
Checking tinyvec v1.11.0
Checking serde_fmt v1.1.0
Checking hashbrown v0.16.1
Checking unicode-normalization v0.1.25
Checking value-bag-serde1 v1.12.0
Checking byteorder v1.5.0
Checking value-bag v1.12.0
Checking gix-utils v0.3.2
Compiling crc32fast v1.5.0
Compiling serde_derive v1.0.228
Compiling thiserror-impl v2.0.18
Checking bstr v1.12.1
Checking log v0.4.29
Checking gix-validate v0.11.1
Checking same-file v1.0.6
Checking walkdir v2.5.0
Checking prodash v31.0.0
Checking zlib-rs v0.6.5
Compiling heapless v0.8.0
Checking gix-path v0.12.0
Compiling autocfg v1.5.0
Compiling libm v0.2.16
Compiling pkg-config v0.3.32
Compiling num-traits v0.2.19
Checking hash32 v0.3.1
Compiling rustix v1.1.4
Checking gix-features v0.48.0
Checking linux-raw-sys v0.12.1
Checking faster-hex v0.10.0
Compiling getrandom v0.4.3
Compiling zerocopy v0.8.42
Compiling zmij v1.0.21
Checking zeroize v1.9.0
Compiling serde_json v1.0.149
Checking equivalent v1.0.2
Checking indexmap v2.13.0
Checking crypto-common v0.1.7
Checking block-buffer v0.10.4
Checking digest v0.10.7
Checking sha1 v0.10.6
Checking once_cell v1.21.4
Checking sha1-checked v0.10.0
Compiling ref-cast v1.0.25
Checking gix-hash v0.25.0
Checking block-padding v0.3.3
Compiling ref-cast-impl v1.0.25
Checking inout v0.1.4
Checking sha2 v0.10.9
Compiling vcpkg v0.2.15
Checking dyn-clone v1.0.20
Checking cipher v0.4.4
Checking tempfile v3.27.0
Compiling serde_derive_internals v0.29.1
Checking der v0.7.10
Compiling libz-sys v1.1.25
Compiling libgit2-sys v0.18.4+1.9.3
Compiling schemars_derive v1.2.1
Checking ppv-lite86 v0.2.21
Checking spin v0.9.8
Checking lazy_static v1.5.0
Checking rand_chacha v0.3.1
Compiling syn v1.0.109
Checking rand v0.8.5
Compiling tree-sitter-language v0.1.7
Checking hmac v0.12.1
Checking universal-hash v0.5.1
Checking num-integer v0.1.46
Checking opaque-debug v0.3.1
Checking spki v0.7.3
Checking schemars v1.2.1
Checking signature v2.2.0
Checking ff v0.13.1
Checking base16ct v0.2.0
Checking sec1 v0.7.3
Checking group v0.13.0
Checking crypto-bigint v0.5.5
Compiling data-encoding v2.10.0
Compiling data-encoding-macro-internal v0.1.17
Compiling amplify_syn v2.0.1
Checking elliptic-curve v0.13.8
Checking num-iter v0.1.45
Checking aead v0.5.2
Compiling match-lookup v0.1.2
Checking const-str v0.4.3
Checking signature v1.6.4
Compiling semver v1.0.27
Checking data-encoding-macro v0.1.19
Compiling rustc_version v0.4.1
Checking base256emoji v1.0.2
Checking ed25519 v1.5.3
Compiling amplify_derive v4.0.1
Checking poly1305 v0.8.0
Checking rfc6979 v0.4.0
Checking qcheck v1.0.0
Checking chacha20 v0.9.1
Checking gix-error v0.2.3
Checking ascii v1.1.0
Checking base-x v0.2.11
Checking amplify_num v0.5.3
Checking multibase v0.9.2
Checking ecdsa v0.16.9
Checking ec25519 v0.1.0
Compiling curve25519-dalek v4.1.3
Checking primeorder v0.13.6
Checking amplify v4.9.0
Checking polyval v0.6.2
Compiling num-bigint-dig v0.8.6
Checking base64ct v1.8.3
Checking ghash v0.5.1
Checking cyphergraphy v0.3.1
Checking pkcs8 v0.10.2
Checking pem-rfc7468 v0.7.0
Checking pbkdf2 v0.12.2
Checking aes v0.8.4
Checking ctr v0.9.2
Checking radicle-git-ref-format v0.2.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-git-ref-format)
Compiling sqlite3-src v0.7.0
Compiling curve25519-dalek-derive v0.1.1
Compiling synstructure v0.13.2
Checking keccak v0.1.6
Checking sha3 v0.10.8
Checking aes-gcm v0.10.3
Checking ssh-encoding v0.2.0
Checking pkcs1 v0.7.5
Checking ed25519 v2.2.3
Checking cbc v0.1.2
Checking blowfish v0.9.1
Checking base32 v0.4.0
Checking percent-encoding v2.3.2
Checking cypheraddr v0.4.1
Checking rsa v0.9.10
Checking bcrypt-pbkdf v0.10.0
Checking ssh-cipher v0.2.0
Checking ed25519-dalek v2.2.0
Compiling zerofrom-derive v0.1.6
Checking p384 v0.13.1
Checking p521 v0.13.3
Checking p256 v0.13.2
Checking chacha20poly1305 v0.10.1
Checking noise-framework v0.4.1
Checking ssh-key v0.6.7
Checking zerofrom v0.1.6
Checking socks5-client v0.4.3
Compiling yoke-derive v0.8.1
Checking secrecy v0.10.3
Checking ssh-agent-lib v0.6.0
Checking cyphernet v0.5.4
Checking nonempty v0.9.0
Checking yoke v0.8.1
Checking jiff v0.2.23
Checking utf8parse v0.2.2
Checking anstyle-query v1.1.5
Compiling zerovec-derive v0.11.2
Checking zerovec v0.11.5
Checking radicle-localtime v0.1.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-localtime)
Compiling displaydoc v0.2.5
Checking errno v0.3.14
Checking anstyle v1.0.14
Checking is_terminal_polyfill v1.70.2
Checking base64 v0.21.7
Checking gix-date v0.15.3
Checking colorchoice v1.0.5
Checking gix-hashtable v0.15.0
Checking gix-actor v0.41.0
Checking siphasher v1.0.2
Checking gix-object v0.60.0
Checking radicle-dag v0.10.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-dag)
Checking memmap2 v0.9.10
Checking nonempty v0.12.0
Checking tinystr v0.8.2
Checking gix-chunk v0.7.1
Checking litemap v0.8.1
Checking writeable v0.6.2
Compiling radicle v0.25.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle)
Checking icu_locale_core v2.1.1
Checking gix-commitgraph v0.37.0
Checking zerotrie v0.2.3
Checking potential_utf v0.1.4
Checking anstyle-parse v1.0.0
Checking serde-untagged v0.1.9
Checking bytesize v2.3.1
Checking fast-glob v0.3.3
Compiling icu_properties_data v2.1.2
Checking dunce v1.0.5
Compiling icu_normalizer_data v2.1.1
Checking icu_provider v2.1.1
Checking anstream v1.0.0
Checking icu_collections v2.1.1
Checking gix-revwalk v0.31.0
Checking gix-fs v0.21.1
Checking mio v1.1.1
Checking sem_safe v0.2.1
Checking adler2 v2.0.1
Checking simd-adler32 v0.3.8
Checking signals_receipts v0.2.5
Checking miniz_oxide v0.8.9
Checking gix-tempfile v23.0.0
Checking gix-quote v0.7.1
Checking icu_normalizer v2.1.1
Checking icu_properties v2.1.2
Checking iana-time-zone v0.1.65
Compiling unicode-segmentation v1.12.0
Checking shell-words v1.1.1
Checking either v1.15.0
Compiling signal-hook v0.3.18
Checking idna_adapter v1.2.1
Checking gix-command v0.9.0
Compiling convert_case v0.10.0
Checking chrono v0.4.44
Checking radicle-signals v0.12.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-signals)
Checking signal-hook-registry v1.4.8
Checking colored v2.2.0
Compiling getrandom v0.3.4
Checking utf8_iter v1.0.4
Compiling rustversion v1.0.22
Compiling object v0.37.3
Checking idna v1.1.0
Compiling derive_more-impl v2.1.1
Checking gix-lock v23.0.0
Checking gix-url v0.36.0
Checking gix-config-value v0.18.0
Checking gix-sec v0.14.0
Compiling litrs v1.0.0
Checking unicode-width v0.2.2
Checking gimli v0.32.3
Compiling portable-atomic v1.13.1
Compiling thiserror v1.0.69
Compiling document-features v0.2.12
Checking gix-prompt v0.15.0
Checking derive_more v2.1.1
Checking signal-hook-mio v0.2.5
Checking addr2line v0.25.1
Checking radicle-log v0.2.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-log)
Checking gix-revision v0.45.0
Checking gix-traverse v0.57.0
Checking gix-diff v0.63.0
Checking anstyle-parse v0.2.7
Checking gix-packetline v0.21.3
Checking gix-glob v0.26.0
Compiling thiserror-impl v1.0.69
Checking rustc-demangle v0.1.27
Checking gix-refspec v0.41.0
Checking backtrace v0.3.76
Checking gix-transport v0.57.0
Checking anstream v0.6.21
Checking gix-pack v0.70.0
Checking arc-swap v1.9.1
Checking crossterm v0.29.0
Checking gix-credentials v0.38.0
Checking console v0.16.3
Checking gix-ref v0.63.0
Checking gix-shallow v0.12.0
Checking gix-negotiate v0.31.0
Checking form_urlencoded v1.2.2
Checking regex v1.12.3
Compiling maybe-async v0.2.10
Compiling tree-sitter v0.24.7
Checking unit-prefix v0.5.2
Checking indicatif v0.18.4
Checking gix-protocol v0.61.0
Checking url v2.5.8
Checking gix-odb v0.80.0
Checking inquire v0.9.4
Checking unicode-display-width v0.3.0
Checking uuid v1.22.0
Checking bytes v1.11.1
Checking snapbox-macros v1.1.0
Checking salsa20 v0.10.2
Checking strsim v0.11.1
Checking similar v3.1.1
Compiling crossbeam-utils v0.8.21
Compiling heck v0.5.0
Checking normalize-line-endings v0.3.0
Checking streaming-iterator v0.1.9
Checking siphasher v0.3.11
Checking clap_lex v1.1.0
Checking clap_builder v4.6.0
Checking bloomy v1.2.0
Checking snapbox v1.2.2
Compiling clap_derive v4.6.0
Checking scrypt v0.11.0
Checking systemd-journal-logger v2.2.2
Compiling tree-sitter-rust v0.23.3
Compiling tree-sitter-json v0.24.8
Compiling tree-sitter-python v0.23.6
Compiling tree-sitter-go v0.23.4
Compiling tree-sitter-typescript v0.23.2
Compiling tree-sitter-css v0.23.2
Compiling tree-sitter-html v0.23.2
Compiling tree-sitter-ruby v0.23.1
Compiling tree-sitter-md v0.3.2
Compiling tree-sitter-c v0.23.4
Compiling tree-sitter-toml-ng v0.6.0
Compiling tree-sitter-bash v0.23.3
Checking serde_spanned v1.0.4
Checking toml_datetime v0.7.5+spec-1.1.0
Checking pin-project-lite v0.2.17
Checking bit-vec v0.8.0
Compiling anyhow v1.0.102
Checking toml_writer v1.0.7+spec-1.1.0
Checking toml v0.9.12+spec-1.1.0
Checking bit-set v0.8.0
Checking tokio v1.50.0
Checking sqlite3-sys v0.18.0
Checking sqlite v0.37.0
Checking radicle-crypto v0.19.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-crypto)
Checking clap v4.6.0
Checking rand_core v0.9.5
Checking sysinfo v0.37.2
Checking yansi v1.0.1
Compiling radicle-cli v0.23.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-cli)
Checking diff v0.1.13
Compiling radicle-node v0.21.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-node)
Checking pretty_assertions v1.4.1
Checking human-panic v2.0.6
Checking crossbeam-channel v0.5.15
Checking clap_complete v4.6.0
Checking structured-logger v1.0.5
Checking radicle-systemd v0.13.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-systemd)
Checking tree-sitter-highlight v0.24.7
Checking itertools v0.14.0
Checking socket2 v0.5.10
Checking humantime v2.3.0
Compiling escargot v0.5.15
Checking timeago v0.4.2
Checking lexopt v0.3.2
Checking wait-timeout v0.2.1
Checking fnv v1.0.7
Checking quick-error v1.2.3
Checking rusty-fork v0.3.1
Checking rand_chacha v0.9.0
Checking rand v0.9.2
Checking rand_xorshift v0.4.0
Compiling qcheck-macros v1.0.0
Checking num-bigint v0.4.6
Compiling ahash v0.8.12
Checking unarray v0.1.4
Checking proptest v1.10.0
Checking num-complex v0.4.6
Checking env_filter v1.0.0
Checking borrow-or-share v0.2.4
Checking fluent-uri v0.3.2
Checking num-rational v0.4.2
Checking num v0.4.3
Checking env_logger v0.11.9
Checking flate2 v1.1.9
Checking phf_shared v0.11.3
Compiling test-log-macros v0.2.19
Checking hex-literal v1.1.0
Compiling radicle-remote-helper v0.18.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-remote-helper)
Checking outref v0.5.2
Checking vsimd v0.8.0
Checking test-log v0.2.19
Checking phf v0.11.3
Checking referencing v0.30.0
Checking uuid-simd v0.8.0
Checking fraction v0.15.3
Checking fancy-regex v0.14.0
Checking email_address v0.2.9
Checking base64 v0.22.1
Checking bytecount v0.6.9
Checking num-cmp v0.1.0
Checking emojis v0.6.4
Compiling pastey v0.2.1
Checking jsonschema v0.30.0
Checking radicle-windows v0.1.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-windows)
Checking git2 v0.21.0
Checking radicle-oid v0.2.2 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-oid)
Checking radicle-git-metadata v0.2.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-git-metadata)
Checking radicle-term v0.19.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-term)
Checking radicle-core v0.4.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-core)
Checking radicle-cob v0.21.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-cob)
Checking radicle-surf v0.29.0 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-surf)
Checking radicle-cli-test v0.14.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-cli-test)
Checking radicle-fetch v0.21.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-fetch)
Checking radicle-schemars v0.9.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-schemars)
Checking radicle-protocol v0.9.1 (/743d92db-6cd3-4ec3-a8b4-1e88e9d3234b/w/crates/radicle-protocol)
error: using `clone` on type `RepoId` which implements the `Copy` trait
--> crates/radicle-node/src/tests.rs:499:40
|
499 | amy.storage_mut().repos.insert(rid.clone(), repo);
| ^^^^^^^^^^^ help: try dereferencing it: `*rid`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#clone_on_copy
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::clone_on_copy)]`
error: could not compile `radicle-node` (lib test) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
Exit code: 101
{
"response": "finished",
"result": "failure"
}