halo2_proofs 0.1

This commit is contained in:
Jack Grigg 2022-05-10 22:44:53 +00:00
parent 82bd5a5446
commit e2c24fcd5c
2 changed files with 4 additions and 6 deletions

View File

@ -8,7 +8,7 @@ and this project adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
### Changed ### Changed
- Migrated to `bitvec 1`, `ff 0.12`, `group 0.12`, `incrementalmerkletree 0.3`, - Migrated to `bitvec 1`, `ff 0.12`, `group 0.12`, `incrementalmerkletree 0.3`,
`pasta_curves 0.4`. `pasta_curves 0.4`, `halo2_proofs 0.1`.
- `orchard::bundle`: - `orchard::bundle`:
- `Action` has been moved to `orchard::Action`. - `Action` has been moved to `orchard::Action`.
- `Bundle::{try_}authorize` have been renamed to - `Bundle::{try_}authorize` have been renamed to

View File

@ -29,8 +29,8 @@ blake2b_simd = "1"
ff = "0.12" ff = "0.12"
fpe = "0.5" fpe = "0.5"
group = "0.12" group = "0.12"
halo2_gadgets = "=0.1.0-beta.3" halo2_gadgets = "0.1"
halo2_proofs = "=0.1.0-beta.4" halo2_proofs = "0.1"
hex = "0.4" hex = "0.4"
lazy_static = "1" lazy_static = "1"
memuse = { version = "0.2", features = ["nonempty"] } memuse = { version = "0.2", features = ["nonempty"] }
@ -49,7 +49,7 @@ plotters = { version = "0.3.0", optional = true }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
halo2_gadgets = { version = "=0.1.0-beta.3", features = ["test-dependencies"] } halo2_gadgets = { version = "0.1", features = ["test-dependencies"] }
hex = "0.4" hex = "0.4"
proptest = "1.0.0" proptest = "1.0.0"
zcash_note_encryption = { version = "0.1", features = ["pre-zip-212"] } zcash_note_encryption = { version = "0.1", features = ["pre-zip-212"] }
@ -83,6 +83,4 @@ debug = true
debug = true debug = true
[patch.crates-io] [patch.crates-io]
halo2_gadgets = { git = "https://github.com/zcash/halo2.git", rev = "50921f95f7d4edf48f79ffba3b892a983d91ed7f" }
halo2_proofs = { git = "https://github.com/zcash/halo2.git", rev = "50921f95f7d4edf48f79ffba3b892a983d91ed7f" }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "0e912de3000fe165daf58ad98d1a22f1a66e7f18" } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "0e912de3000fe165daf58ad98d1a22f1a66e7f18" }