diff --git a/Cargo.lock b/Cargo.lock index 483f4c89..2ca0bf05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1113,7 +1113,7 @@ dependencies = [ "hyper", "libc", "pin-project-lite", - "socket2", + "socket2 0.5.10", "tokio", "tower-service", "tracing", @@ -1260,6 +1260,17 @@ dependencies = [ "hashbrown 0.15.4", ] +[[package]] +name = "io-uring" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -2146,7 +2157,7 @@ dependencies = [ "pin-project-lite", "ryu", "sha1_smol", - "socket2", + "socket2 0.5.10", "tokio", "tokio-util", "url", @@ -2545,7 +2556,7 @@ dependencies = [ "serde", "serde_json", "sha1", - "socket2", + "socket2 0.5.10", "strum", "thiserror 2.0.12", "tokio", @@ -2666,6 +2677,16 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "socket2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -2871,20 +2892,22 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.45.1" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2", + "slab", + "socket2 0.6.0", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2929,7 +2952,7 @@ dependencies = [ "postgres-protocol", "postgres-types", "rand 0.9.1", - "socket2", + "socket2 0.5.10", "tokio", "tokio-util", "whoami", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7217622d..4cda5b20 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -16,7 +16,7 @@ common = { path = "../common" } env_logger = "0.11.3" log = "0.4.19" serde_json = "1.0.97" -tokio = { version = "1.41.0", features = ["full"] } +tokio = { version = "1.47.1", features = ["full"] } roxmltree = "0.20.0" serde = { version = "1.0", features = ["derive"] } uuid = { version = "1.12.1", features = ["v4", "fast-rng"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index 4bf8e3ca..681bdd21 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -15,7 +15,7 @@ uuid = { version = "1.12.1", features = ["v4", "fast-rng", "serde"] } serde = { version = "1.0", features = ["derive"] } toml = "0.8.0" log = "0.4.19" -tokio = { version = "1.41.0", features = ["full"] } +tokio = { version = "1.47.1", features = ["full"] } serde_json = "1.0.97" async-trait = "0.1.68" tokio-postgres = "0.7" diff --git a/server/Cargo.toml b/server/Cargo.toml index 4f485239..870127dd 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -22,7 +22,7 @@ log = "0.4.19" mime = "0.3.17" quick-xml = "0.36.0" roxmltree = "0.20.0" -tokio = { version = "1.41.0", features = ["full"] } +tokio = { version = "1.47.1", features = ["full"] } rdkafka = { version = "0.37.0", features = ["zstd", "libz", "external-lz4", "ssl", "gssapi"] } regex = "1.11.0" uuid = { version = "1.12.1", features = ["v4", "fast-rng"] }