From c9cc287503b0243f81b32de176c460ca5556dcf5 Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Thu, 23 Oct 2025 16:09:40 +0200 Subject: [PATCH] Update various dependencies Signed-off-by: Moritz Hoffmann --- communication/Cargo.toml | 2 +- timely/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/communication/Cargo.toml b/communication/Cargo.toml index fcd1fcaf5..f437b2f71 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -21,7 +21,7 @@ default = ["getopts"] [dependencies] columnar = { workspace = true } -getopts = { version = "0.2.21", optional = true } +getopts = { version = "0.2.24", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.24" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index bf3faa99f..92b92d726 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -24,8 +24,8 @@ getopts = ["dep:getopts", "timely_communication/getopts"] [dependencies] columnar = { workspace = true } columnation = "0.1" -getopts = { version = "0.2.21", optional = true } -bincode = { version = "1.0" } +getopts = { version = "0.2.24", optional = true } +bincode = { version = "1.3" } byteorder = "1.5" itertools = "0.14.0" serde = { version = "1.0", features = ["derive"] } @@ -33,8 +33,8 @@ timely_bytes = { path = "../bytes", version = "0.24" } timely_logging = { path = "../logging", version = "0.24" } timely_communication = { path = "../communication", version = "0.24", default-features = false } timely_container = { path = "../container", version = "0.24" } -smallvec = { version = "1.13.2", features = ["serde", "const_generics"] } +smallvec = { version = "1.15.1", features = ["serde", "const_generics"] } [dev-dependencies] -bytemuck = "1.18.0" +bytemuck = "1.24.0" rand = { version = "0.8", features = ["small_rng"] }