-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1583 from zcash/fix/rewind_checkpoint_id_selection
Fix/rewind checkpoint id selection
- Loading branch information
Showing
8 changed files
with
60 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
|
||
# cargo-vet imports lock | ||
|
||
[[unpublished.zcash_client_backend]] | ||
version = "0.14.0" | ||
audited_as = "0.13.0" | ||
|
||
[[unpublished.zcash_client_sqlite]] | ||
version = "0.12.0" | ||
audited_as = "0.11.2" | ||
|
||
[[unpublished.zcash_client_sqlite]] | ||
version = "0.12.1" | ||
audited_as = "0.12.0" | ||
|
||
[[unpublished.zcash_keys]] | ||
version = "0.4.0" | ||
audited_as = "0.3.0" | ||
|
||
[[publisher.bumpalo]] | ||
version = "3.16.0" | ||
when = "2024-04-08" | ||
|
@@ -92,13 +76,6 @@ user-id = 169181 | |
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
||
[[publisher.shardtree]] | ||
version = "0.4.0" | ||
when = "2024-08-12" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
||
[[publisher.shardtree]] | ||
version = "0.5.0" | ||
when = "2024-10-04" | ||
|
@@ -261,25 +238,18 @@ user-login = "str4d" | |
user-name = "Jack Grigg" | ||
|
||
[[publisher.zcash_client_backend]] | ||
version = "0.13.0" | ||
when = "2024-08-20" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
||
[[publisher.zcash_client_sqlite]] | ||
version = "0.11.2" | ||
when = "2024-09-03" | ||
version = "0.14.0" | ||
when = "2024-10-04" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
||
[[publisher.zcash_client_sqlite]] | ||
version = "0.12.0" | ||
when = "2024-10-04" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
version = "0.12.2" | ||
when = "2024-10-22" | ||
user-id = 6289 | ||
user-login = "str4d" | ||
user-name = "Jack Grigg" | ||
|
||
[[publisher.zcash_encoding]] | ||
version = "0.2.0" | ||
|
@@ -302,8 +272,8 @@ user-login = "str4d" | |
user-name = "Jack Grigg" | ||
|
||
[[publisher.zcash_keys]] | ||
version = "0.3.0" | ||
when = "2024-08-20" | ||
version = "0.4.0" | ||
when = "2024-10-04" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
@@ -350,13 +320,6 @@ user-id = 6289 | |
user-login = "str4d" | ||
user-name = "Jack Grigg" | ||
|
||
[[publisher.zip321]] | ||
version = "0.1.0" | ||
when = "2024-08-20" | ||
user-id = 169181 | ||
user-login = "nuttycom" | ||
user-name = "Kris Nuttycombe" | ||
|
||
[[publisher.zip321]] | ||
version = "0.2.0" | ||
when = "2024-10-04" | ||
|
@@ -419,6 +382,12 @@ criteria = "safe-to-deploy" | |
version = "1.0.73" | ||
notes = "I am the author of this crate." | ||
|
||
[[audits.bytecode-alliance.audits.cipher]] | ||
who = "Andrew Brown <[email protected]>" | ||
criteria = "safe-to-deploy" | ||
version = "0.4.4" | ||
notes = "Most unsafe is hidden by `inout` dependency; only remaining unsafe is raw-splitting a slice and an unreachable hint. Older versions of this regularly reach ~150k daily downloads." | ||
|
||
[[audits.bytecode-alliance.audits.constant_time_eq]] | ||
who = "Nick Fitzgerald <[email protected]>" | ||
criteria = "safe-to-deploy" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_client_sqlite" | ||
description = "An SQLite-based Zcash light client" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters