-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
94 additions
and
94 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
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,6 +1,6 @@ | ||
[package] | ||
name = "tower-batch-control" | ||
version = "0.2.41-beta.13" | ||
version = "0.2.41-beta.14" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Tower middleware for batch request processing" | ||
# # Legal | ||
|
@@ -43,10 +43,10 @@ rand = "0.8.5" | |
|
||
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } | ||
tokio-test = "0.4.4" | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.13" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.14" } | ||
tower-test = "0.4.0" | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" } | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } |
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,6 +1,6 @@ | ||
[package] | ||
name = "tower-fallback" | ||
version = "0.2.41-beta.13" | ||
version = "0.2.41-beta.14" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors." | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -24,4 +24,4 @@ tracing = "0.1.39" | |
[dev-dependencies] | ||
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-chain" | ||
version = "1.0.0-beta.37" | ||
version = "1.0.0-beta.38" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Core Zcash data structures" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -143,7 +143,7 @@ proptest-derive = { version = "0.4.0", optional = true } | |
rand = { version = "0.8.5", optional = true } | ||
rand_chacha = { version = "0.3.1", optional = true } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37", optional = true } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38", optional = true } | ||
|
||
[dev-dependencies] | ||
# Benchmarks | ||
|
@@ -166,7 +166,7 @@ rand_chacha = "0.3.1" | |
|
||
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" } | ||
|
||
[[bench]] | ||
name = "block" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-consensus" | ||
version = "1.0.0-beta.37" | ||
version = "1.0.0-beta.38" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Implementation of Zcash consensus checks" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -63,13 +63,13 @@ orchard = "0.8.0" | |
zcash_proofs = { version = "0.15.0", features = ["multicore" ] } | ||
wagyu-zcash-parameters = "0.2.0" | ||
|
||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.13" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.13" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.14" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.14" } | ||
|
||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.37" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.37" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.38" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" } | ||
|
||
# prod feature progress-bar | ||
howudoin = { version = "0.1.2", optional = true } | ||
|
@@ -94,6 +94,6 @@ tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } | |
tracing-error = "0.2.0" | ||
tracing-subscriber = "0.3.18" | ||
|
||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-grpc" | ||
version = "0.1.0-alpha.4" | ||
version = "0.1.0-alpha.5" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Zebra gRPC interface" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -28,8 +28,8 @@ color-eyre = "0.6.3" | |
|
||
zcash_primitives = { version = "0.15.0" } | ||
|
||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.37", features = ["shielded-scan"] } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.37" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["shielded-scan"] } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.38" } | ||
|
||
[build-dependencies] | ||
tonic-build = "0.11.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-network" | ||
version = "1.0.0-beta.37" | ||
version = "1.0.0-beta.38" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Networking code for Zebra" | ||
# # Legal | ||
|
@@ -83,7 +83,7 @@ howudoin = { version = "0.1.2", optional = true } | |
proptest = { version = "1.4.0", optional = true } | ||
proptest-derive = { version = "0.4.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37", features = ["async-error"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["async-error"] } | ||
|
||
[dev-dependencies] | ||
proptest = "1.4.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-node-services" | ||
version = "1.0.0-beta.37" | ||
version = "1.0.0-beta.38" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "The interfaces of some Zebra node services" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -37,7 +37,7 @@ rpc-client = [ | |
shielded-scan = ["tokio"] | ||
|
||
[dependencies] | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.37" } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.38" } | ||
|
||
# Optional dependencies | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-rpc" | ||
version = "1.0.0-beta.37" | ||
version = "1.0.0-beta.38" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -74,12 +74,12 @@ zcash_address = { version = "0.3.2", optional = true } | |
# Test-only feature proptest-impl | ||
proptest = { version = "1.4.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37", features = ["json-conversion"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.37" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.37" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.37" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.37" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["json-conversion"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.38" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" } | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.39.0", features = ["redactions", "json", "ron"] } | ||
|
@@ -89,9 +89,9 @@ proptest = "1.4.0" | |
thiserror = "1.0.61" | ||
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
|
||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.37" } | ||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "zebra-scan" | ||
version = "0.1.0-alpha.6" | ||
version = "0.1.0-alpha.7" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Shielded transaction scanner for the Zcash blockchain" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -57,10 +57,10 @@ zcash_primitives = "0.15.0" | |
zcash_address = "0.3.2" | ||
sapling = { package = "sapling-crypto", version = "0.1" } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.37", features = ["shielded-scan"] } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37", features = ["shielded-scan"] } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.37", features = ["shielded-scan"] } | ||
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.4" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["shielded-scan"] } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["shielded-scan"] } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["shielded-scan"] } | ||
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.5" } | ||
|
||
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std", "serde"] } | ||
|
||
|
@@ -75,7 +75,7 @@ jubjub = { version = "0.10.0", optional = true } | |
rand = { version = "0.8.5", optional = true } | ||
zcash_note_encryption = { version = "0.4.0", optional = true } | ||
|
||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.37", optional = true } | ||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38", optional = true } | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.39.0", features = ["ron", "redactions"] } | ||
|
@@ -90,5 +90,5 @@ jubjub = "0.10.0" | |
rand = "0.8.5" | ||
zcash_note_encryption = "0.4.0" | ||
|
||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.37", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.37" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" } |
Oops, something went wrong.