Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump deps #7883

Merged
merged 2 commits into from
Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
844 changes: 453 additions & 391 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,5 @@ rustc-demangle = { opt-level = 3 }
[patch.crates-io]
# If there are dependencies that need patching, they can be listed below.
# For example:
# http-types = { git = "https://github.com/Xuanwo/http-types", rev = "106fc6d" }
# arrow-format = { git = "https://github.com/datafuse-extras/arrow-format", rev = "78dacc1" }
arrow-format = { git = "https://github.com/datafuse-extras/arrow-format", rev = "78dacc1" }
PsiACE marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 2 additions & 2 deletions src/binaries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ anyhow = "1.0.65"
clap = { version = "3.2.22", features = ["derive", "env"] }
openraft = { git = "https://github.com/datafuselabs/openraft", tag = "v0.7.3" }
sentry = "0.27.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
Xuanwo marked this conversation as resolved.
Show resolved Hide resolved
serde_json = "1.0.85"
tokio-stream = "0.1.10"
tonic = "0.7.2"
tonic = "0.8.1"
Xuanwo marked this conversation as resolved.
Show resolved Hide resolved
tracing = "0.1.36"
url = "2.3.1"

Expand Down
2 changes: 1 addition & 1 deletion src/common/base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pprof = { version = "0.10.1", features = [
"protobuf-codec",
"protobuf",
] }
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
tikv-jemalloc-ctl = { version = "0.4.2", optional = true }
tikv-jemalloc-sys = "0.4.3"
tokio = { version = "1.21.1", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions src/common/exception/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ common-arrow = { path = "../arrow" }
anyhow = "1.0.65"
bincode = { version = "2.0.0-rc.1", features = ["serde", "std", "alloc"] }
paste = "1.0.9"
prost = "0.10.4"
serde = { version = "1.0.144", features = ["derive"] }
prost = "0.11.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
thiserror = "1"
time = "0.3.14"
tonic = "0.7.2"
tonic = "0.8.1"

# Github dependencies
sqlparser = { git = "https://github.com/datafuse-extras/sqlparser-rs", rev = "7f246e3" }
6 changes: 3 additions & 3 deletions src/common/grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ anyerror = "=0.1.7"
hyper = "0.14.20"
jwt-simple = "0.11.0"
once_cell = "1.15.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
thiserror = "1"
tonic = { version = "0.7.2", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tonic = { version = "0.8.1", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tracing = "0.1.36"
trust-dns-resolver = { version = "0.21.2", features = ["system-config"] }
trust-dns-resolver = { version = "0.22.0", features = ["system-config"] }

[build-dependencies]

Expand Down
4 changes: 2 additions & 2 deletions src/common/hashtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ test = false
common-base = { path = "../base" }

# Crates.io dependencies
ahash = "0.7.6"
ahash = "0.8.0"
ordered-float = { version = "3.1.0", features = ["serde"] }
primitive-types = "0.11.1"
primitive-types = "0.12.0"

[dev-dependencies]
rand = "0.8.5"
2 changes: 1 addition & 1 deletion src/common/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ common-exception = { path = "../exception" }
# Crates.io dependencies
futures = "0.3.24"
poem = { version = "1", features = ["rustls"] }
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
tempfile = { version = "3.3.0", optional = true }
tracing = "0.1.36"

Expand Down
4 changes: 2 additions & 2 deletions src/common/io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ chrono = "0.4.22"
chrono-tz = "0.6.3"
futures = "0.3.24"
lexical-core = "0.8.5"
micromarshal = "0.1.0"
serde = { version = "1.0.144", features = ["derive"] }
micromarshal = "0.2.0"
serde = { version = "1.0.145", features = ["derive"] }
time = "0.3.14"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/common/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ doctest = false
test = false

[dependencies]
proc-macro2 = "1.0.43"
proc-macro2 = "1.0.44"
quote = "1.0.21"
syn = { version = "1.0.100", features = ["full"] }
4 changes: 2 additions & 2 deletions src/common/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ test = false
common-exception = { path = "../exception" }

# Crates.io dependencies
metrics = "0.20.0"
metrics = "0.20.1"
metrics-exporter-prometheus = { version = "0.11.0", default-features = false }
once_cell = "1.15.0"
parking_lot = "0.12.1"
prometheus-parse = "0.2.3"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
tracing = "0.1.36"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/common/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ common-contexts = { path = "../contexts" }
common-exception = { path = "../exception" }

anyhow = "1.0.65"
backon = "0.1.0"
backon = "0.2.0"
globiter = "0.1.0"
once_cell = "1.15.0"
opendal = { version = "0.17.1", features = [
Expand All @@ -26,4 +26,4 @@ opendal = { version = "0.17.1", features = [
"compress",
] }
percent-encoding = "2.2.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
10 changes: 5 additions & 5 deletions src/common/tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ common-exception = { path = "../exception" }
# Crates.io dependencies
console-subscriber = { version = "0.1.8", optional = true }
once_cell = "1.15.0"
opentelemetry = { version = "0.17.0", default-features = false, features = ["trace", "rt-tokio"] }
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] }
opentelemetry = { version = "0.18.0", default-features = false, features = ["trace", "rt-tokio"] }
opentelemetry-jaeger = { version = "0.17.0", features = ["rt-tokio"] }
sentry-tracing = "0.27.0"
serde = { version = "1.0.144", features = ["derive"] }
tonic = "0.7.2"
serde = { version = "1.0.145", features = ["derive"] }
tonic = "0.8.1"
tracing = "0.1.36"
tracing-appender = "0.2.2"
tracing-bunyan-formatter = "0.3.3"
tracing-log = "0.1.3"
tracing-opentelemetry = "0.17.4"
tracing-opentelemetry = "0.18.0"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "ansi"] }
4 changes: 2 additions & 2 deletions src/common/tracing/src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ pub fn init_logging(name: &str, cfg: &Config) -> Vec<WorkerGuard> {
if !jaeger_agent_endpoint.is_empty() {
global::set_text_map_propagator(TraceContextPropagator::new());

let tracer = opentelemetry_jaeger::new_pipeline()
let tracer = opentelemetry_jaeger::new_agent_pipeline()
.with_service_name(name)
.with_agent_endpoint(jaeger_agent_endpoint)
.with_endpoint(jaeger_agent_endpoint)
.with_auto_split_batch(true)
.install_batch(opentelemetry::runtime::Tokio)
.expect("install");
Expand Down
2 changes: 1 addition & 1 deletion src/meta/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ enumflags2 = { version = "0.7.5", features = ["serde"] }
maplit = "1.0.2"
serde_json = "1.0.85"
thiserror = "1"
tonic = { version = "0.7.2", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tonic = { version = "0.8.1", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tracing = "0.1.36"
4 changes: 2 additions & 2 deletions src/meta/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ enumflags2 = { version = "0.7.5", features = ["serde"] }
maplit = "1.0.2"
num-derive = "0.3.3"
num-traits = "0.2.15"
serde = { version = "1.0.144", features = ["derive", "rc"] }
serde = { version = "1.0.145", features = ["derive", "rc"] }

[build-dependencies]
common-building = { path = "../../common/building" }
tonic-build = "0.7.2"
tonic-build = "0.8.0"
6 changes: 3 additions & 3 deletions src/meta/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ derive_more = "0.99.17"
futures = "0.3.24"
once_cell = "1.15.0"
parking_lot = "0.12.1"
prost = "0.10.4"
prost = "0.11.0"
rand = "0.8.5"
semver = "1.0.14"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
thiserror = "1"
tonic = { version = "0.7.2", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tonic = { version = "0.8.1", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tracing = "0.1.36"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions src/meta/protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ test = false
[dependencies]
num-derive = "0.3.3"
num-traits = "0.2.15"
prost = "0.10.4"
tonic = { version = "0.7.2", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
prost = "0.11.0"
tonic = { version = "0.8.1", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }

[build-dependencies]
prost-build = "0.10.4"
tonic-build = "0.7.2"
prost-build = "0.11.1"
tonic-build = "0.8.0"

[dev-dependencies]
2 changes: 1 addition & 1 deletion src/meta/raft-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ maplit = "1.0.2"
num = "0.4.0"
once_cell = "1.15.0"
rand = "0.8.5"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
tracing = "0.1.36"

Expand Down
10 changes: 5 additions & 5 deletions src/meta/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ num = "0.4.0"
once_cell = "1.15.0"
poem = { version = "1", features = ["rustls"] }
prometheus = { version = "0.13.2", features = ["process"] }
prost = "0.10.4"
prost = "0.11.0"
semver = "1.0.14"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde-bridge = "0.0.3"
serde_json = "1.0.85"
serfig = "0.0.2"
tempfile = "3.3.0"
tokio-stream = "0.1.10"
tonic = { version = "0.7.2", features = ["tls"] }
tonic-reflection = "0.4.0"
tonic = { version = "0.8.1", features = ["tls"] }
tonic-reflection = "0.5.0"
tracing = "0.1.36"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "ansi"] }
Expand All @@ -71,7 +71,7 @@ maplit = "1.0.2"
pretty_assertions = "1.3.0"
regex = "1.6.0"
reqwest = { version = "0.11.12", features = ["json"] }
temp-env = "0.2.0"
temp-env = "0.3.0"

[build-dependencies]
common-building = { path = "../../common/building" }
2 changes: 1 addition & 1 deletion src/meta/sled-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sled = { git = "https://github.com/datafuse-extras/sled", tag = "v0.34.7-datafus
anyhow = "1.0.65"
byteorder = "1.4.3"
once_cell = "1.15.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
tempfile = "3.3.0"
tracing = "0.1.36"
Expand Down
10 changes: 5 additions & 5 deletions src/meta/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ maplit = "1.0.2"
num-derive = "0.3.3"
num-traits = "0.2.15"
once_cell = "1.15.0"
prost = "0.10.4"
serde = { version = "1.0.144", features = ["derive"] }
prost = "0.11.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
sha1 = "0.10.5"
sha2 = "0.10.6"
thiserror = "1"
tonic = { version = "0.7.2", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }
tonic = { version = "0.8.1", features = ["transport", "codegen", "prost", "tls-roots", "tls"] }

[build-dependencies]
common-building = { path = "../../common/building" }
prost-build = "0.10.4"
tonic-build = "0.7.2"
prost-build = "0.11.1"
tonic-build = "0.8.0"

[dev-dependencies]
anyhow = "1.0.65"
Expand Down
2 changes: 1 addition & 1 deletion src/query/ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ url = "2.3.1"

[dev-dependencies]
common-base = { path = "../../common/base" }
criterion = "0.3"
criterion = "0.4"
goldenfile = "1.4"
pretty_assertions = "1.3.0"
regex = "1.6.0"
Expand Down
2 changes: 1 addition & 1 deletion src/query/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ common-expression = { path = "../expression" }
# https://github.com/reem/rust-ordered-float/pull/110 is released.
itertools = "0.10"
ordered-float = { version = "3.1.0", features = ["serde"] }
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
4 changes: 2 additions & 2 deletions src/query/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ hex = "0.4.3"
once_cell = "1.15.0"
opendal = { version = "0.17.1", features = ["layers-retry", "compress"], optional = true }
semver = "1.0.14"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serfig = "0.0.2"
thrift = { version = "0.15.0", optional = true }
thrift = { version = "0.16.0", optional = true }

[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions src/query/datablocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ common-io = { path = "../../common/io" }
# Github dependencies

# Crates.io dependencies
ahash = "0.7.6"
ahash = "0.8.0"
comfy-table = "6.1.0"
parking_lot = "0.12.1"
primitive-types = "0.11.1"
primitive-types = "0.12.0"
regex = "1.6.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions src/query/datavalues/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ common-arrow = { path = "../../common/arrow" }
common-exception = { path = "../../common/exception" }
common-hashtable = { path = "../../common/hashtable" }
common-io = { path = "../../common/io" }
primitive-types = "0.11.1"
primitive-types = "0.12.0"

# Github dependencies

Expand All @@ -27,18 +27,18 @@ dyn-clone = "1.0.9"
enum_dispatch = "0.3.8"
itertools = "0.10.5"
lexical-core = "0.8.5"
micromarshal = "0.1.0"
micromarshal = "0.2.0"
num = "0.4.0"
once_cell = "1.15.0"
ordered-float = "3.1.0"
paste = "1.0.9"
rand = { version = "0.8.5", features = ["small_rng"] }
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
smallvec = { version = "1.9.0", features = ["write"] }

[dev-dependencies]
criterion = "0.3"
criterion = "0.4"
pretty_assertions = "1.3.0"
rand = "0.8.5"

Expand Down
2 changes: 1 addition & 1 deletion src/query/expression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ chrono-tz = "0.6.3"
comfy-table = "6"
common-jsonb = { path = "../../common/jsonb" }
educe = "0.4"
enum-as-inner = "0.4"
enum-as-inner = "0.5"
hex = "0.4.3"
itertools = "0.10"
match-template = "0.0.1"
Expand Down
4 changes: 2 additions & 2 deletions src/query/functions-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ common-jsonb = { path = "../../common/jsonb" }

# Crates.io dependencies
base64 = "0.13.0"
bstr = "0.2.17"
bstr = "1.0.1"
bumpalo = "3.11.0"
bytes = "1.2.1"
chrono-tz = "0.6.3"
Expand All @@ -36,7 +36,7 @@ ordered-float = { version = "3.1.0", features = [
] }
rand = { version = "0.8.5", features = ["small_rng"] }
regex = "1.6.0"
serde = { version = "1.0.144", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0"
simdutf8 = "0.1.4"
strength_reduce = "0.2.3"
Expand Down
Loading