Skip to content

Commit

Permalink
Upgrade a bunch of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Dec 9, 2024
1 parent 7ec03f9 commit 879752c
Show file tree
Hide file tree
Showing 25 changed files with 796 additions and 467 deletions.
803 changes: 451 additions & 352 deletions quickwit/Cargo.lock

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ base64 = "0.22"
binggan = { version = "0.14" }
bytes = { version = "1", features = ["serde"] }
bytesize = { version = "1.3.0", features = ["serde"] }
bytestring = "1.3.0"
bytestring = "1.4"
chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "54cbc70" }
chrono = { version = "0.4", default-features = false, features = [
"clock",
Expand Down Expand Up @@ -117,12 +117,12 @@ google-cloud-auth = "0.12.0"
google-cloud-gax = "0.15.0"
google-cloud-googleapis = { version = "0.10.0", features = ["pubsub"] }
google-cloud-pubsub = "0.18.0"
heck = "0.4.1"
heck = "0.5"
hex = "0.4.3"
home = "0.5.4"
hostname = "0.3"
http = "0.2.9"
http-serde = "1.1.2"
hostname = "0.4"
http = "0.2"
http-serde = "1.1"
humantime = "2.1.0"
hyper = { version = "0.14", features = [
"client",
Expand All @@ -133,7 +133,7 @@ hyper = { version = "0.14", features = [
"tcp",
] }
hyper-rustls = "0.24"
indexmap = { version = "2.1.0", features = ["serde"] }
indexmap = { version = "2.7", features = ["serde"] }
indicatif = "0.17.3"
itertools = "0.13"
json_comments = "0.2"
Expand Down Expand Up @@ -167,7 +167,7 @@ ouroboros = "0.18.0"
percent-encoding = "2.3.1"
pin-project = "1.1.0"
pnet = { version = "0.33.0", features = ["std"] }
postcard = { version = "1.0.4", features = [
postcard = { version = "1.1", features = [
"use-std",
], default-features = false }
predicates = "3"
Expand All @@ -176,11 +176,11 @@ pprof = { version = "0.13", features = ["flamegraph"] }
proc-macro2 = "1.0.50"
prometheus = { version = "0.13", features = ["process"] }
proptest = "1"
prost = { version = "0.11.6", default-features = false, features = [
prost = { version = "0.12", default-features = false, features = [
"prost-derive",
] }
prost-build = "0.11.6"
prost-types = "0.11.6"
prost-build = "0.12"
prost-types = "0.12"
pulsar = { version = "5.1.1", default-features = false, features = [
"auth-oauth2",
"compression",
Expand Down Expand Up @@ -216,7 +216,7 @@ serde_json_borrow = "0.5"
serde_qs = { version = "0.12", features = ["warp"] }
serde_with = "3.9.0"
serde_yaml = "0.9"
serial_test = { version = "3.1.1", features = ["file_locks"] }
serial_test = { version = "3.2", features = ["file_locks"] }
siphasher = "0.3"
smallvec = "1"
sqlx = { version = "0.7", features = [
Expand All @@ -239,8 +239,8 @@ tokio-metrics = { version = "0.3.1", features = ["rt"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["full"] }
toml = "0.7.6"
tonic = { version = "0.9.0", features = ["gzip"] }
tonic-build = "0.9.0"
tonic = { version = "0.11", features = ["gzip"] }
tonic-build = "0.11"
tower = { version = "0.4.13", features = [
"balance",
"buffer",
Expand Down Expand Up @@ -281,7 +281,7 @@ aws-config = "1.5.4"
aws-credential-types = { version = "1.2", features = ["hardcoded-credentials"] }
aws-runtime = "1.3.1"
aws-sdk-kinesis = "1.37"
aws-sdk-s3 = "1.42"
aws-sdk-s3 = "1.64"
aws-sdk-sqs = "1.36"
aws-smithy-async = "1.2"
aws-smithy-runtime = "1.6.2"
Expand Down
15 changes: 11 additions & 4 deletions quickwit/quickwit-codegen/example/src/codegen/hello.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions quickwit/quickwit-common/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,7 @@ impl HostAddr {
(host_addr, default_port)
};
if !is_valid_hostname(hostname) {
bail!(
"failed to parse address `{}`: hostname is invalid",
host_addr
)
bail!("failed to parse address `{host_addr}`: hostname is invalid")
}
Ok(Self {
host: Host::Hostname(hostname.to_string()),
Expand Down
13 changes: 10 additions & 3 deletions quickwit/quickwit-ingest/src/codegen/ingest_service.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 43 additions & 15 deletions quickwit/quickwit-proto/src/codegen/jaeger/jaeger.storage.v1.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 879752c

Please sign in to comment.