diff --git a/Cargo.lock b/Cargo.lock index 57252e8..7bfa675 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1062,9 +1062,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.40.0" +version = "1.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" dependencies = [ "backtrace", "bytes", diff --git a/examples/async/Cargo.toml b/examples/async/Cargo.toml index e58aa53..99d0cda 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.6.0" -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.41.0", features = ["full"] } [dependencies.rusqlite_migration] path = "../../rusqlite_migration" diff --git a/rusqlite_migration/Cargo.toml b/rusqlite_migration/Cargo.toml index 403e141..636ec87 100644 --- a/rusqlite_migration/Cargo.toml +++ b/rusqlite_migration/Cargo.toml @@ -37,7 +37,7 @@ log = "0.4" tokio-rusqlite = { version = "0.6.0", optional = true } [dependencies.tokio] -version = "1.40" +version = "1.41" 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.40", features = ["full"] } +tokio = { version = "1.41", 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 c9da253..52818f6 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.40", features = ["macros"] } +tokio = { version = "1.41", features = ["macros"] } tokio-rusqlite = { version = "0.6.0" } log = "0.4"