Skip to content

Commit 57eb240

Browse files
fix(ci): downgrade ed25519-dalek@3.0.0 to 2.1.1 in lockfile
Cargo resolves both 2.1.1 and 3.0.0, so an unqualified cargo update is ambiguous. Target the 3.0.0 slot explicitly after generate-lockfile. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent c075699 commit 57eb240

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ jobs:
6161
- name: Pin ed25519-dalek lockfile
6262
run: |
6363
# soroban-env-host allows ed25519-dalek >=2.0.0; without a lockfile
64-
# Cargo may pick 3.0.0, which breaks soroban-env-host testutils.
64+
# Cargo may pick 3.0.0 alongside our 2.1.1 dev-deps.
6565
cargo generate-lockfile
66-
cargo update -p ed25519-dalek --precise 2.1.1
66+
cargo update -p ed25519-dalek@3.0.0 --precise 2.1.1
6767
cargo tree -p ed25519-dalek
6868
6969
- name: cargo fmt

0 commit comments

Comments
 (0)