chore(deps): Bump thiserror from 1.0.35 to 1.0.36 (#5737)

Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.35 to 1.0.36.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.35...1.0.36)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
pull/24376/head
dependabot[bot] 2022-09-26 14:44:36 +00:00 committed by GitHub
parent 65f1550126
commit b1740f45d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 15 additions and 15 deletions

8
Cargo.lock generated
View File

@ -5030,18 +5030,18 @@ checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.35" version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85" checksum = "0a99cb8c4b9a8ef0e7907cd3b617cc8dc04d571c4e73c8ae403d80ac160bb122"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.35" version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783" checksum = "3a891860d3c8d66fec8e73ddb3765f90082374dbaaa833407b904a94f1a7eb43"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
http = "0.2.8" http = "0.2.8"
thiserror = "1.0.35" thiserror = "1.0.36"
tonic = { version = "0.8" } tonic = { version = "0.8" }
tower = "0.4" tower = "0.4"
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}

View File

@ -18,7 +18,7 @@ observability_deps = { path = "../observability_deps" }
schema = { path = "../schema" } schema = { path = "../schema" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.82" serde_json = "1.0.82"
thiserror = "1.0.35" thiserror = "1.0.36"
tokio = { version = "1.21" } tokio = { version = "1.21" }
tonic = { version = "0.8" } tonic = { version = "0.8" }
trogging = { path = "../trogging", features = ["clap"] } trogging = { path = "../trogging", features = ["clap"] }

View File

@ -57,7 +57,7 @@ once_cell = { version = "1.15.0", features = ["parking_lot"] }
rustyline = { version = "10.0", default-features = false } rustyline = { version = "10.0", default-features = false }
serde_json = "1.0.83" serde_json = "1.0.83"
snafu = "0.7" snafu = "0.7"
thiserror = "1.0.35" thiserror = "1.0.36"
tikv-jemalloc-ctl = { version = "0.5.0", optional = true } tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["net"] } tokio-stream = { version = "0.1", features = ["net"] }

View File

@ -26,7 +26,7 @@ bytes = "1.2"
futures-util = { version = "0.3", optional = true } futures-util = { version = "0.3", optional = true }
prost = "0.11" prost = "0.11"
rand = "0.8.3" rand = "0.8.3"
thiserror = "1.0.35" thiserror = "1.0.36"
tonic = { version = "0.8" } tonic = { version = "0.8" }
[dev-dependencies] # In alphabetical order [dev-dependencies] # In alphabetical order

View File

@ -16,7 +16,7 @@ observability_deps = { path = "../observability_deps" }
snafu = "0.7" snafu = "0.7"
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] } sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" } sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" }
thiserror = "1.0.35" thiserror = "1.0.36"
tokio = { version = "1.21", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] } tokio = { version = "1.21", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
uuid = { version = "1", features = ["v4"] } uuid = { version = "1", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}

View File

@ -22,6 +22,6 @@ trace = { path = "../trace" }
# Crates.io dependencies, in alphabetical order # Crates.io dependencies, in alphabetical order
async-trait = "0.1" async-trait = "0.1"
hyper = "0.14" hyper = "0.14"
thiserror = "1.0.35" thiserror = "1.0.36"
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}
parquet_file = { version = "0.1.0", path = "../parquet_file" } parquet_file = { version = "0.1.0", path = "../parquet_file" }

View File

@ -19,5 +19,5 @@ write_buffer = { path = "../write_buffer" }
# Crates.io dependencies, in alphabetical order # Crates.io dependencies, in alphabetical order
async-trait = "0.1" async-trait = "0.1"
hyper = "0.14" hyper = "0.14"
thiserror = "1.0.35" thiserror = "1.0.36"
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}

View File

@ -25,7 +25,7 @@ trace = { path = "../trace" }
arrow-flight = "22.0.0" arrow-flight = "22.0.0"
async-trait = "0.1" async-trait = "0.1"
hyper = "0.14" hyper = "0.14"
thiserror = "1.0.35" thiserror = "1.0.36"
tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tonic = "0.8" tonic = "0.8"
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}

View File

@ -23,7 +23,7 @@ write_summary = { path = "../write_summary" }
async-trait = "0.1" async-trait = "0.1"
hashbrown = "0.12" hashbrown = "0.12"
hyper = "0.14" hyper = "0.14"
thiserror = "1.0.35" thiserror = "1.0.36"
tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = { version = "0.7.4" } tokio-util = { version = "0.7.4" }
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}

View File

@ -29,4 +29,4 @@ tokio = { version = "1.21", features = ["macros", "parking_lot", "rt", "rt-multi
uuid = { version = "1", features = ["v4"] } uuid = { version = "1", features = ["v4"] }
zstd = "0.11" zstd = "0.11"
workspace-hack = { path = "../workspace-hack"} workspace-hack = { path = "../workspace-hack"}
thiserror = "1.0.35" thiserror = "1.0.36"

View File

@ -12,7 +12,7 @@ atty = "0.2.14"
clap = { version = "3", features = ["derive", "env"], optional = true } clap = { version = "3", features = ["derive", "env"], optional = true }
logfmt = { path = "../logfmt" } logfmt = { path = "../logfmt" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
thiserror = "1.0.35" thiserror = "1.0.36"
tracing-log = "0.1" tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }