Skip to content

Commit aa254e7

Browse files
committed
Debug and WIP.
Signed-off-by: Daira-Emma Hopwood <[email protected]>
1 parent 33beaf4 commit aa254e7

File tree

5 files changed

+36
-6
lines changed

5 files changed

+36
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ jobs:
7373
- name: Show Cargo.toml for the synthetic crate
7474
working-directory: ./ci-build
7575
run: cat Cargo.toml
76+
- name: DEBUG cargo tree -i -p getrandom -e features
77+
working-directory: ./ci-build
78+
run: cargo tree -i -p getrandom -e features
79+
- name: DEBUG cargo tree -i -p rand_core -e features
80+
working-directory: ./ci-build
81+
run: cargo tree -i -p rand_core -e features
7682
- name: Add target
7783
working-directory: ./ci-build
7884
run: rustup target add ${{ matrix.target }}

.github/workflows/lints-stable.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ jobs:
5353
- name: Show Cargo.toml for the synthetic crate
5454
working-directory: ./ci-build
5555
run: cat Cargo.toml
56+
- name: DEBUG cargo tree -i -p getrandom -e features
57+
working-directory: ./ci-build
58+
run: cargo tree -i -p getrandom -e features
59+
- name: DEBUG cargo tree -i -p rand_core -e features
60+
working-directory: ./ci-build
61+
run: cargo tree -i -p rand_core -e features
5662
- name: Add target
5763
working-directory: ./ci-build
5864
run: rustup target add ${{ matrix.target }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Changed
10+
- The "circuit" feature no longer implies the "std" feature. "circuit" can now
11+
potentially be used in `no_std` environments.
12+
- `orchard::bundle::batch` is now only available when the "std" feature is enabled
13+
together with the "circuit" feature.
914

1015
## [0.11.0] - 2025-02-20
1116

Cargo.lock

Lines changed: 15 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,7 @@ debug = true
106106

107107
[profile.bench]
108108
debug = true
109+
110+
[patch.crates-io]
111+
halo2_gadgets = { git = "https://github.com/zcash/halo2.git", rev = "7e173f8e2e6e8717052e472384bdf28e58eaff19" }
112+
halo2_proofs = { git = "https://github.com/zcash/halo2.git", rev = "7e173f8e2e6e8717052e472384bdf28e58eaff19" }

0 commit comments

Comments
 (0)