Merge pull request #805 from zcash/check-in-lockfile

Add `Cargo.lock` to repository
This commit is contained in:
Daira Emma Hopwood 2023-11-29 21:52:01 +00:00 committed by GitHub
commit 7fd2ce259e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2292 additions and 4 deletions

4
.gitignore vendored
View File

@ -1,6 +1,8 @@
/target
/halo2_gadgets/*-layout.png
/halo2_gadgets/benches/sha256_assets
**/.*.swp
**/*.rs.bk
Cargo.lock
.vscode
**/*.html
.DS_Store

2283
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@ authors = [
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
description = "[BETA] Fast zero-knowledge proof-carrying data implementation with no trusted setup"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"

View File

@ -9,7 +9,7 @@ authors = [
"Kris Nuttycombe <kris@electriccoin.co>",
]
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
description = "Reusable gadgets and chip implementations for Halo 2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"
@ -54,6 +54,7 @@ test-dev-graph = [
"plotters",
"plotters/bitmap_backend",
"plotters/bitmap_encoder",
"plotters/ttf",
]
test-dependencies = ["proptest"]

View File

@ -8,7 +8,7 @@ authors = [
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
description = """
Fast PLONK-based zero-knowledge proving system with no trusted setup
"""
@ -82,6 +82,8 @@ dev-graph = ["plotters", "tabbycat"]
test-dev-graph = [
"dev-graph",
"plotters/bitmap_backend",
"plotters/bitmap_encoder",
"plotters/ttf",
]
gadget-traces = ["backtrace"]
sanity-checks = []