Skip to content

Commit 41afcff

Browse files
committed
Upgrade a bunch of dependencies
1 parent d4e38e0 commit 41afcff

25 files changed

+1149
-725
lines changed

quickwit/Cargo.lock

+798-604
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ base64 = "0.22"
8989
binggan = { version = "0.14" }
9090
bytes = { version = "1", features = ["serde"] }
9191
bytesize = { version = "1.3.0", features = ["serde"] }
92-
bytestring = "1.3.0"
92+
bytestring = "1.4"
9393
chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "54cbc70" }
9494
chrono = { version = "0.4", default-features = false, features = [
9595
"clock",
9696
"std",
9797
] }
9898
clap = { version = "4.5.0", features = ["env", "string"] }
9999
coarsetime = "0.1.33"
100-
colored = "2.1.0"
100+
colored = "2.2"
101101
console-subscriber = "0.1.8"
102102
criterion = { version = "0.5", features = ["async_tokio"] }
103103
cron = "0.12.0"
@@ -117,12 +117,12 @@ google-cloud-auth = "0.12.0"
117117
google-cloud-gax = "0.15.0"
118118
google-cloud-googleapis = { version = "0.10.0", features = ["pubsub"] }
119119
google-cloud-pubsub = "0.18.0"
120-
heck = "0.4.1"
120+
heck = "0.5"
121121
hex = "0.4.3"
122122
home = "0.5.4"
123-
hostname = "0.3"
124-
http = "0.2.9"
125-
http-serde = "1.1.2"
123+
hostname = "0.4"
124+
http = "0.2"
125+
http-serde = "1.1"
126126
humantime = "2.1.0"
127127
hyper = { version = "0.14", features = [
128128
"client",
@@ -133,7 +133,7 @@ hyper = { version = "0.14", features = [
133133
"tcp",
134134
] }
135135
hyper-rustls = "0.24"
136-
indexmap = { version = "2.1.0", features = ["serde"] }
136+
indexmap = { version = "2.7", features = ["serde"] }
137137
indicatif = "0.17.3"
138138
itertools = "0.13"
139139
json_comments = "0.2"
@@ -167,7 +167,7 @@ ouroboros = "0.18.0"
167167
percent-encoding = "2.3.1"
168168
pin-project = "1.1.0"
169169
pnet = { version = "0.33.0", features = ["std"] }
170-
postcard = { version = "1.0.4", features = [
170+
postcard = { version = "1.1", features = [
171171
"use-std",
172172
], default-features = false }
173173
predicates = "3"
@@ -176,11 +176,11 @@ pprof = { version = "0.13", features = ["flamegraph"] }
176176
proc-macro2 = "1.0.50"
177177
prometheus = { version = "0.13", features = ["process"] }
178178
proptest = "1"
179-
prost = { version = "0.11.6", default-features = false, features = [
179+
prost = { version = "0.12", default-features = false, features = [
180180
"prost-derive",
181181
] }
182-
prost-build = "0.11.6"
183-
prost-types = "0.11.6"
182+
prost-build = "0.12"
183+
prost-types = "0.12"
184184
pulsar = { version = "6.3", default-features = false, features = [
185185
"auth-oauth2",
186186
"compression",
@@ -216,8 +216,8 @@ serde_json_borrow = "0.5"
216216
serde_qs = { version = "0.12", features = ["warp"] }
217217
serde_with = "3.9.0"
218218
serde_yaml = "0.9"
219-
serial_test = { version = "3.1.1", features = ["file_locks"] }
220-
siphasher = "0.3"
219+
serial_test = { version = "3.2", features = ["file_locks"] }
220+
siphasher = "1"
221221
smallvec = "1"
222222
sqlx = { version = "0.7", features = [
223223
"migrate",
@@ -229,18 +229,18 @@ syn = { version = "2.0.11", features = ["extra-traits", "full", "parsing"] }
229229
sync_wrapper = "0.1.2"
230230
tabled = { version = "0.14", features = ["color"] }
231231
tempfile = "3"
232-
thiserror = "1"
232+
thiserror = "2"
233233
thousands = "0.2.0"
234234
tikv-jemalloc-ctl = "0.5"
235235
tikv-jemallocator = "0.5"
236236
time = { version = "0.3", features = ["std", "formatting", "macros"] }
237-
tokio = { version = "1.40", features = ["full"] }
237+
tokio = { version = "1.42", features = ["full"] }
238238
tokio-metrics = { version = "0.3.1", features = ["rt"] }
239239
tokio-stream = { version = "0.1", features = ["sync"] }
240240
tokio-util = { version = "0.7", features = ["full"] }
241-
toml = "0.7.6"
242-
tonic = { version = "0.9.0", features = ["gzip"] }
243-
tonic-build = "0.9.0"
241+
toml = "0.8"
242+
tonic = { version = "0.11", features = ["gzip"] }
243+
tonic-build = "0.11"
244244
tower = { version = "0.4.13", features = [
245245
"balance",
246246
"buffer",
@@ -265,7 +265,7 @@ typetag = "0.2"
265265
ulid = "1.1"
266266
username = "0.2"
267267
utoipa = { version = "4.2", features = ["time", "ulid"] }
268-
uuid = { version = "1.10", features = ["v4", "serde"] }
268+
uuid = { version = "1.12", features = ["v4", "serde"] }
269269
vrl = { version = "0.19", default-features = false, features = [
270270
"compiler",
271271
"diagnostic",
@@ -281,7 +281,7 @@ aws-config = "1.5.4"
281281
aws-credential-types = { version = "1.2", features = ["hardcoded-credentials"] }
282282
aws-runtime = "1.3.1"
283283
aws-sdk-kinesis = "1.37"
284-
aws-sdk-s3 = "1.42"
284+
aws-sdk-s3 = "1.64"
285285
aws-sdk-sqs = "1.36"
286286
aws-smithy-async = "1.2"
287287
aws-smithy-runtime = "1.6.2"

quickwit/quickwit-codegen/example/src/codegen/hello.rs

+11-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/quickwit-common/src/net.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,7 @@ impl HostAddr {
171171
(host_addr, default_port)
172172
};
173173
if !is_valid_hostname(hostname) {
174-
bail!(
175-
"failed to parse address `{}`: hostname is invalid",
176-
host_addr
177-
)
174+
bail!("failed to parse address `{host_addr}`: hostname is invalid")
178175
}
179176
Ok(Self {
180177
host: Host::Hostname(hostname.to_string()),

quickwit/quickwit-ingest/src/codegen/ingest_service.rs

+10-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/quickwit-proto/src/codegen/jaeger/jaeger.api_v2.rs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/quickwit-proto/src/codegen/jaeger/jaeger.storage.v1.rs

+43-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)