diff --git a/Cargo.lock b/Cargo.lock index cbfcf84b..d20e911d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2628,6 +2628,12 @@ dependencies = [ "subtle", ] +[[package]] +name = "paste" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0744126afe1a6dd7f394cb50a716dbe086cb06e255e53d8d0185d82828358fb5" + [[package]] name = "pear" version = "0.2.3" @@ -3410,7 +3416,6 @@ version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" dependencies = [ - "indexmap", "itoa 1.0.1", "ryu", "serde", @@ -3620,9 +3625,9 @@ dependencies = [ [[package]] name = "sqlx" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692749de69603d81e016212199d73a2e14ee20e2def7d7914919e8db5d4d48b9" +checksum = "fc15591eb44ffb5816a4a70a7efd5dd87bfd3aa84c4c200401c4396140525826" dependencies = [ "sqlx-core", "sqlx-macros", @@ -3630,9 +3635,9 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518be6f6fff5ca76f985d434f9c37f3662af279642acf730388f271dff7b9016" +checksum = "195183bf6ff8328bb82c0511a83faf60aacf75840103388851db61d7a9854ae3" dependencies = [ "ahash", "atoi", @@ -3642,9 +3647,7 @@ dependencies = [ "bytes 1.1.0", "chrono", "crc", - "crossbeam-channel", "crossbeam-queue", - "crossbeam-utils", "dirs", "either", "futures-channel", @@ -3661,7 +3664,7 @@ dependencies = [ "md-5", "memchr", "once_cell", - "parking_lot 0.11.2", + "paste", "percent-encoding", "rand", "rustls 0.19.1", @@ -3683,9 +3686,9 @@ dependencies = [ [[package]] name = "sqlx-macros" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38e45140529cf1f90a5e1c2e561500ca345821a1c513652c8f486bbf07407cc8" +checksum = "eee35713129561f5e55c554bba1c378e2a7e67f81257b7311183de98c50e6f94" dependencies = [ "dotenv", "either", @@ -3705,9 +3708,9 @@ dependencies = [ [[package]] name = "sqlx-rt" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8061cbaa91ee75041514f67a09398c65a64efed72c90151ecd47593bad53da99" +checksum = "b555e70fbbf84e269ec3858b7a6515bcfe7a166a7cc9c636dd6efd20431678b6" dependencies = [ "once_cell", "tokio", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index a0bc1b99..593ad9e1 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -21,7 +21,7 @@ url = { version = "2.2.2", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } serde_with = { version = "1.12.0", features = ["hex", "chrono"] } serde_json = "1.0.79" -sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] } +sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } lettre = { version = "0.10.0-rc.4", default-features = false, features = ["serde", "builder"] } rand = "0.8.5" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 1e17fbc5..c22cb4d1 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -27,7 +27,7 @@ hyper = { version = "0.14.17", features = ["full"] } lettre = { version = "0.10.0-rc.4", default-features = false, features = ["builder"] } # Database access -sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] } +sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization serde = { version = "1.0.136", features = ["derive"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 4bdcf750..02690745 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tokio = "1.17.0" -sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] } +sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } thiserror = "1.0.30" diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 7b095a5d..a0896def 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -11,6 +11,6 @@ async-trait = "0.1.52" tokio-stream = "0.1.8" futures-util = "0.3.21" tracing = "0.1.31" -sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] } +sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } mas-storage = { path = "../storage" } diff --git a/crates/warp-utils/Cargo.toml b/crates/warp-utils/Cargo.toml index 3ca4cef6..a71f3019 100644 --- a/crates/warp-utils/Cargo.toml +++ b/crates/warp-utils/Cargo.toml @@ -13,7 +13,7 @@ warp = "0.3.2" hyper = { version = "0.14.17", features = ["full"] } thiserror = "1.0.30" anyhow = "1.0.53" -sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] } +sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } serde_with = { version = "1.12.0", features = ["hex", "chrono"] }