Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,12 @@ jobs:
path: crates
# We use a synthetic crate to ensure no dev-dependencies are enabled, which can
# be incompatible with some of these targets.
- name: Copy Rust toolchain into the root for use in synthetic crate setup
run: cp crates/rust-toolchain.toml .
- name: Create synthetic crate for testing
run: cargo init --lib ci-build
- name: Copy Rust version into synthetic crate
run: cp crates/rust-toolchain.toml ci-build/
- name: Move Rust toolchain file into synthetic crate
run: mv rust-toolchain.toml ci-build/
- name: Copy patch directives into synthetic crate
run: |
echo "[patch.crates-io]" >> ./ci-build/Cargo.toml
Expand Down
83 changes: 75 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ sapling = { package = "sapling-crypto", version = "0.3", default-features = fals

# - Orchard
nonempty = "0.7"
orchard = { version = "0.10", default-features = false }
orchard = { version = "0.10.2", default-features = false }
pasta_curves = "0.5"

# - Transparent
Expand Down
5 changes: 5 additions & 0 deletions zcash_primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this library adheres to Rust's notion of

## [Unreleased]

## [0.19.1, 0.20.1] - 2025-05-09

### Fixed
- Migrated to `orchard 0.10.2` to fix a missing feature dependency.

## [0.20.0] - 2024-11-14

### Added
Expand Down
4 changes: 2 additions & 2 deletions zcash_primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.20.0"
version = "0.20.1"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"
Expand Down Expand Up @@ -47,7 +47,7 @@ ff.workspace = true
group = { workspace = true, features = ["wnaf-memuse"] }
jubjub.workspace = true
nonempty.workspace = true
orchard.workspace = true
orchard = { workspace = true, features = ["circuit"] }
sapling.workspace = true
zcash_spec.workspace = true

Expand Down
Loading