diff --git a/Cargo.lock b/Cargo.lock index 3b438268..406415ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1306,6 +1306,17 @@ dependencies = [ "syn", ] +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags 2.8.0", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -2617,17 +2628,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.2" +version = "1.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "1140bb80481756a8cbe10541f37433b459c5aa1e727b4c020fbfebdc25bf3ec4" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index b3e3fe3e..adfb1608 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -76,7 +76,7 @@ reqwest_cookie_store = { version = "0.8.0", default-features = false, optional = env_logger = "0.11.1" uniffi = { workspace = true } -tokio = { version = "1.44.2", features = ["full"], optional = true } +tokio = { version = "1.46.0", features = ["full"], optional = true } phoenix_channels_client = { git = "https://github.com/liveview-native/phoenix-channels-client.git", branch = "main", optional = true, default-features = false } # This is for wasm support on phoenix-channels-client #phoenix_channels_client = { git = "https://github.com/liveview-native/phoenix-channels-client.git", branch = "simlay/webassembly-support", optional = true, default-features = false }