diff --git a/Cargo.lock b/Cargo.lock index e5617c8..c489069 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -453,18 +453,18 @@ checksum = "71a816c97c42258aa5834d07590b718b4c9a598944cd39a52dc25b351185d678" [[package]] name = "include_dir" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" +checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" dependencies = [ "include_dir_macros", ] [[package]] name = "include_dir_macros" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" +checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" dependencies = [ "proc-macro2", "quote", diff --git a/examples/from-directory/Cargo.toml b/examples/from-directory/Cargo.toml index 3916c16..81638a0 100644 --- a/examples/from-directory/Cargo.toml +++ b/examples/from-directory/Cargo.toml @@ -14,7 +14,7 @@ env_logger = "0.10" anyhow = "1" lazy_static = "1.4.0" mktemp = "0.5" -include_dir = "0.7.3" +include_dir = "0.7.4" [dependencies.rusqlite] version = "0.31.0" diff --git a/rusqlite_migration/Cargo.toml b/rusqlite_migration/Cargo.toml index cd546e5..53866a8 100644 --- a/rusqlite_migration/Cargo.toml +++ b/rusqlite_migration/Cargo.toml @@ -31,7 +31,7 @@ alpha-async-tokio-rusqlite = ["dep:tokio-rusqlite", "dep:tokio"] from-directory = ["dep:include_dir"] [dependencies] -include_dir = { version = "0.7.3", optional = true } +include_dir = { version = "0.7.4", optional = true } tokio = { version = "1.38", features = ["macros"], optional = true } tokio-rusqlite = { version = "0.5.0", optional = true } log = "0.4" diff --git a/rusqlite_migration_tests/Cargo.toml b/rusqlite_migration_tests/Cargo.toml index eeef51c..1cc3567 100644 --- a/rusqlite_migration_tests/Cargo.toml +++ b/rusqlite_migration_tests/Cargo.toml @@ -33,7 +33,7 @@ env_logger = "0.10" anyhow = "1" lazy_static = "1.4.0" mktemp = "0.5" -include_dir = "0.7.3" +include_dir = "0.7.4" [[test]] name = "integration_tests"