Skip to content

Commit 48995be

Browse files
committed
build: pin radicle-* crates to github fork branches
1 parent 858b5a3 commit 48995be

5 files changed

Lines changed: 738 additions & 8 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ RustAgentDemo/*.a
124124
# Product specific
125125
concat_output.txt
126126
CLAUDE.md
127-
.cargo/cargo-deny.log
127+
.cargo/
128128

129129
# Git worktrees
130130
.worktrees/

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@ auths-storage = { path = "crates/auths-storage", version = "0.0.1-rc.4" }
6262
# Compile crypto-heavy crates with optimizations even in dev/test builds.
6363
# Without this, Argon2id key derivation (m=64 MiB, t=3) takes ~5-10s per
6464
# call in unoptimized builds, causing E2E test timeouts on CI runners.
65-
# Override git deps with local paths for development.
66-
# These are ignored in Docker/CI where the git deps are resolved directly.
67-
[patch."https://github.com/bordumb/heartwood"]
68-
radicle-core = { path = "/Users/bordumb/workspace/repositories/radicle-base/heartwood/crates/radicle-core" }
69-
radicle-crypto = { path = "/Users/bordumb/workspace/repositories/radicle-base/heartwood/crates/radicle-crypto" }
7065

7166
[profile.dev.package.argon2]
7267
opt-level = 3

crates/auths-radicle/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ auths-verifier = { workspace = true, default-features = false }
3030
bs58 = "0.5.1"
3131
json-canon = "=0.1.3"
3232
# Git deps; overridden locally via [patch] in workspace root
33-
radicle-core = { git = "https://github.com/bordumb/heartwood", branch = "dev-authsIntegration", features = ["serde"] }
34-
radicle-crypto = { git = "https://github.com/bordumb/heartwood", branch = "dev-authsIntegration" }
33+
radicle-core = { git = "https://github.com/bordumb/heartwood", branch = "dev-authsIntegration-1.6.1", features = ["serde"] }
34+
radicle-crypto = { git = "https://github.com/bordumb/heartwood", branch = "dev-authsIntegration-1.6.1" }
3535
serde = { version = "1", features = ["derive"] }
3636
serde_json = "1.0"
3737
thiserror.workspace = true

0 commit comments

Comments
 (0)