diff --git a/Cargo.lock b/Cargo.lock index 736f923..b24270a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1062,9 +1062,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.3" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/examples/async/Cargo.toml b/examples/async/Cargo.toml index 5c23966..3a214b1 100644 --- a/examples/async/Cargo.toml +++ b/examples/async/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1" lazy_static = "1.5.0" mktemp = "0.5" tokio-rusqlite = "0.5.0" -tokio = { version = "1.39.3", features = ["full"] } +tokio = { version = "1.40.0", features = ["full"] } [dependencies.rusqlite_migration] path = "../../rusqlite_migration" diff --git a/rusqlite_migration/Cargo.toml b/rusqlite_migration/Cargo.toml index 59a7f75..20435e0 100644 --- a/rusqlite_migration/Cargo.toml +++ b/rusqlite_migration/Cargo.toml @@ -37,7 +37,7 @@ log = "0.4" tokio-rusqlite = { version = "0.5.0", optional = true } [dependencies.tokio] -version = "1.39" +version = "1.40" features = ["macros"] optional = true @@ -55,7 +55,7 @@ lazy_static = "1.5.0" mktemp = "0.5" mutants = "0.0.3" simple-logging = "2.0.2" -tokio = { version = "1.39", features = ["full"] } +tokio = { version = "1.40", features = ["full"] } tokio-test = "0.4.4" [dev-dependencies.criterion] diff --git a/rusqlite_migration_tests/Cargo.toml b/rusqlite_migration_tests/Cargo.toml index 06d3fa5..cba246c 100644 --- a/rusqlite_migration_tests/Cargo.toml +++ b/rusqlite_migration_tests/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -tokio = { version = "1.39", features = ["macros"] } +tokio = { version = "1.40", features = ["macros"] } tokio-rusqlite = { version = "0.5.0" } log = "0.4"