diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 48bdcd8..1f1530d 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -528,7 +528,7 @@ dependencies = [ "http-body", "hyper", "pin-project-lite", - "socket2", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -683,6 +683,17 @@ dependencies = [ "hashbrown", ] +[[package]] +name = "io-uring" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" +dependencies = [ + "bitflags", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -707,9 +718,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.171" +version = "0.2.174" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" +checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" [[package]] name = "linux-raw-sys" @@ -1244,6 +1255,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 = "sqlite" version = "0.36.2" @@ -1422,17 +1443,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.1" +version = "1.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" +checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "pin-project-lite", - "socket2", - "windows-sys 0.52.0", + "slab", + "socket2 0.6.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/rust/fusion-core/Cargo.toml b/rust/fusion-core/Cargo.toml index c9f938f..ed2ed63 100644 --- a/rust/fusion-core/Cargo.toml +++ b/rust/fusion-core/Cargo.toml @@ -12,7 +12,7 @@ serde_json = "1.0.140" thiserror = "2.0.12" sqlite = { version = "0.36.2" , features = ["default"]} reqwest = { version = "0.12.15", features = ["json", "default"] } -tokio = { version = "1.24.1", features = ["time", "sync"] } +tokio = { version = "1.47.0", features = ["time", "sync"] } async-compat = "0.2.4" base64 = "0.22.1"