diff --git a/Cargo.lock b/Cargo.lock index cb6debe..dacecc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6348,9 +6348,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.49.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes", "libc", @@ -6455,12 +6455,10 @@ dependencies = [ [[package]] name = "tokio-test" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7" +checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "async-stream", - "bytes", "futures-core", "tokio", "tokio-stream", @@ -6468,9 +6466,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.17" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 0b38f25..5cf2eca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ syn = { version = "2.0", features = ["full", "extra-traits", "parsing"] } convert_case = "0.6" # Async runtime -tokio = { version = "1.40", features = ["full"] } +tokio = { version = "1.50", features = ["full"] } futures = "0.3" # Serialization diff --git a/prax-migrate/Cargo.toml b/prax-migrate/Cargo.toml index ee3bee2..c88328f 100644 --- a/prax-migrate/Cargo.toml +++ b/prax-migrate/Cargo.toml @@ -13,7 +13,7 @@ categories = ["database", "asynchronous"] [dependencies] prax-schema = { path = "../prax-schema", version = "0.6.0" } -tokio = { version = "1.49", features = ["full", "fs"] } +tokio = { version = "1.50", features = ["full", "fs"] } thiserror = "2.0" async-trait = "0.1" serde = { version = "1.0", features = ["derive"] }