diff --git a/Cargo.lock b/Cargo.lock index 2007970be..f88912bcb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,9 +21,9 @@ dependencies = [ [[package]] name = "actix-cors" -version = "0.6.5" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370" +checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" dependencies = [ "actix-utils", "actix-web", @@ -1085,11 +1085,10 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "deadpool" -version = "0.10.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490" +checksum = "6541a3916932fe57768d4be0b1ffb5ec7cbf74ca8c903fdfd5c0fe8aa958f0ed" dependencies = [ - "async-trait", "deadpool-runtime", "num_cpus", "tokio", @@ -1097,11 +1096,13 @@ dependencies = [ [[package]] name = "deadpool-postgres" -version = "0.12.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda39fa1cfff190d8924d447ad04fd22772c250438ca5ce1dfb3c80621c05aaa" +checksum = "1ab8a4ea925ce79678034870834602a2980f4b88c09e97feb266496dbb4493d2" dependencies = [ + "async-trait", "deadpool", + "getrandom", "tokio", "tokio-postgres", "tracing", diff --git a/Cargo.toml b/Cargo.toml index c11682199..6b6e809a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ missing_panics_doc = "allow" module_name_repetitions = "allow" [workspace.dependencies] -actix-cors = "0.6" +actix-cors = "0.7" actix-http = "3" actix-rt = "2" actix-web = "4" @@ -38,7 +38,7 @@ cargo-husky = { version = "1", features = ["user-hooks"], default-features = fal clap = { version = "4", features = ["derive"] } criterion = { version = "0.5", features = ["async_futures", "async_tokio", "html_reports"] } ctor = "0.2" -deadpool-postgres = "0.12" +deadpool-postgres = "0.14" enum-display = "0.1" env_logger = "0.11" flate2 = "1"