Bump thiserror from 1.0.29 to 1.0.30 (#2856)
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.29 to 1.0.30. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.29...1.0.30) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Deirdre Connolly <deirdre@zfnd.org>
This commit is contained in:
parent
76fb994a2c
commit
7a5f419cb6
|
|
@ -3756,18 +3756,18 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.29"
|
version = "1.0.30"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88"
|
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.29"
|
version = "1.0.30"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
|
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2 1.0.24",
|
"proc-macro2 1.0.24",
|
||||||
"quote 1.0.7",
|
"quote 1.0.7",
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ serde = { version = "1", features = ["serde_derive"] }
|
||||||
futures = "0.3.17"
|
futures = "0.3.17"
|
||||||
futures-util = "0.3.17"
|
futures-util = "0.3.17"
|
||||||
metrics = "0.13.0-alpha.8"
|
metrics = "0.13.0-alpha.8"
|
||||||
thiserror = "1.0.29"
|
thiserror = "1.0.30"
|
||||||
tokio = { version = "0.3.6", features = ["time", "sync", "stream", "tracing"] }
|
tokio = { version = "0.3.6", features = ["time", "sync", "stream", "tracing"] }
|
||||||
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
||||||
tracing = "0.1.29"
|
tracing = "0.1.29"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zcash_script = { git = "https://github.com/ZcashFoundation/zcash_script.git", rev = "1caa29e975405400983f679a376fb1c86527d5f2" }
|
zcash_script = { git = "https://github.com/ZcashFoundation/zcash_script.git", rev = "1caa29e975405400983f679a376fb1c86527d5f2" }
|
||||||
zebra-chain = { path = "../zebra-chain" }
|
zebra-chain = { path = "../zebra-chain" }
|
||||||
thiserror = "1.0.29"
|
thiserror = "1.0.30"
|
||||||
displaydoc = "0.2.2"
|
displaydoc = "0.2.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ futures = "0.3.17"
|
||||||
metrics = "0.13.0-alpha.8"
|
metrics = "0.13.0-alpha.8"
|
||||||
tower = { version = "0.4", features = ["buffer", "util"] }
|
tower = { version = "0.4", features = ["buffer", "util"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
thiserror = "1.0.29"
|
thiserror = "1.0.30"
|
||||||
tokio = { version = "0.3.6", features = ["sync"] }
|
tokio = { version = "0.3.6", features = ["sync"] }
|
||||||
displaydoc = "0.2.2"
|
displaydoc = "0.2.2"
|
||||||
rocksdb = "0.16.0"
|
rocksdb = "0.16.0"
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ color-eyre = "0.5.11"
|
||||||
owo-colors = "2.1.0"
|
owo-colors = "2.1.0"
|
||||||
pretty_assertions = "1.0.0"
|
pretty_assertions = "1.0.0"
|
||||||
spandoc = "0.2.0"
|
spandoc = "0.2.0"
|
||||||
thiserror = "1.0.29"
|
thiserror = "1.0.30"
|
||||||
tracing = "0.1.29"
|
tracing = "0.1.29"
|
||||||
tracing-subscriber = "0.2.25"
|
tracing-subscriber = "0.2.25"
|
||||||
tracing-error = "0.1.2"
|
tracing-error = "0.1.2"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue