Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
build(deps): bump tokio to 1.48.0
  • Loading branch information
SanchithHegde committed Nov 6, 2025
commit 649523b8fe3faa61a859a5a1bac86abffec0cf23
325 changes: 189 additions & 136 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/analytics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio", "runtime-to
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.69"
time = { version = "0.3.41", features = ["serde", "serde-well-known", "std"] }
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/common_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ signal-hook = { version = "0.3.18", optional = true }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.69"
time = { version = "0.3.41", features = ["serde", "serde-well-known", "std"] }
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"], optional = true }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"], optional = true }
url = { version = "2.5.4", features = ["serde"] }
urlencoding = "2.1.3"
utoipa = { version = "4.2.3", features = ["preserve_order", "preserve_path_order"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/drainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde = "1.0.219"
serde_json = "1.0.140"
serde_path_to_error = "0.1.17"
thiserror = "1.0.69"
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }

# First Party Crates
common_utils = { version = "0.1.0", path = "../common_utils", features = ["signals"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/external_services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ vaultrs = { version = "0.7.4", optional = true }
prost = { version = "0.13", optional = true }
prost-types = { version = "0.13", optional = true }
time = { version = "0.3.41", features = ["serde", "serde-well-known", "std"] }
tokio = "1.45.1"
tokio = "1.48.0"
tonic = "0.13.1"
tonic-reflection = "0.13.1"
tonic-types = "0.13.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/injector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ reqwest = { version = "0.12.0", features = ["json", "stream", "rustls-tls"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140" }
thiserror = { version = "1.0.69" }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1.40" }
url = { version = "2.5.4", features = ["serde"] }

[lints]
workspace = true
workspace = true
4 changes: 2 additions & 2 deletions crates/redis_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ fred = { version = "7.1.2", features = ["metrics", "partial-tracing", "subscribe
futures = "0.3"
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "1.0.69"
tokio = "1.45.1"
tokio = "1.48.0"
tokio-stream = { version = "0.1.17", features = ["sync"] }
tracing = { workspace = true }

# First party crates
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext"] }

[dev-dependencies]
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ strum = { version = "0.26", features = ["derive"] }
tera = "1.20.0"
thiserror = "1.0.69"
time = { version = "0.3.41", features = ["serde", "serde-well-known", "std", "parsing", "serde-human-readable"] }
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
totp-rs = { version = "5.7.0", features = ["gen_secret", "otpauth"] }
tracing-futures = { version = "0.2.5", features = ["tokio"] }
unicode-segmentation = "1.12.0"
Expand Down Expand Up @@ -155,7 +155,7 @@ derive_deref = "1.1.1"
rand = "0.8.5"
serial_test = "3.2.0"
time = { version = "0.3.41", features = ["macros"] }
tokio = "1.45.1"
tokio = "1.48.0"
wiremock = "0.6.3"

# First party dev-dependencies
Expand Down
4 changes: 2 additions & 2 deletions crates/router_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde_json = "1.0.140"
serde_path_to_error = "0.1.17"
strum = { version = "0.26.3", features = ["derive"] }
time = { version = "0.3.41", default-features = false, features = ["formatting"] }
tokio = { version = "1.45.1" }
tokio = { version = "1.48.0" }
tracing = { workspace = true }
tracing-actix-web = { version = "0.7.18", features = ["opentelemetry_0_27", "uuid_v7"], optional = true }
tracing-appender = { version = "0.2.3" }
Expand All @@ -32,7 +32,7 @@ tracing-subscriber = { version = "0.3.19", default-features = true, features = [
vergen = { version = "8.3.2", optional = true, features = ["cargo", "git", "git2", "rustc"] }

[dev-dependencies]
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }

[build-dependencies]
cargo_metadata = "0.18.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde_json = "1.0.140"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.69"
time = { version = "0.3.41", features = ["serde", "serde-well-known", "std"] }
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
uuid = { version = "1.17.0", features = ["v4"] }

# First party crates
Expand Down
2 changes: 1 addition & 1 deletion crates/storage_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ moka = { version = "0.12", features = ["future"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "1.0.69"
tokio = { version = "1.45.1", features = ["rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["rt-multi-thread"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde_urlencoded = "0.7.1"
serial_test = "3.2.0"
thirtyfour = "0.31.0"
time = { version = "0.3.41", features = ["macros"] }
tokio = "1.45.1"
tokio = "1.48.0"
toml = "0.8.22"

# First party crates
Expand Down