diff --git a/backend/Cargo.lock b/backend/Cargo.lock index caa76893..f1ac30d8 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1708,6 +1708,8 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" dependencies = [ + "futures-core", + "futures-sink", "spin 0.9.8", ] @@ -2324,16 +2326,16 @@ dependencies = [ [[package]] name = "lapin" -version = "2.3.1" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f3067a1fcfbc3fc46455809c023e69b8f6602463201010f4ae5a3b572adb9dc" +checksum = "be0454336697a39b3eb8d06339aa1b4da3cad94862fca62b0e32fd4b7f71b563" dependencies = [ "amq-protocol", "async-global-executor-trait", "async-reactor-trait", "async-trait", "executor-trait", - "flume 0.10.14", + "flume 0.11.0", "futures-core", "futures-io", "parking_lot 0.12.1", @@ -3835,18 +3837,18 @@ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" [[package]] name = "serde" -version = "1.0.198" +version = "1.0.199" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" +checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.198" +version = "1.0.199" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" +checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" dependencies = [ "proc-macro2", "quote", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 66f64506..794cde7c 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -42,7 +42,7 @@ sea-orm = { version = "0.11.2", default-features = false, features = [ "with-uuid", ] } sea-orm-migration = { version = "0.11.3" } -serde = { version = "1.0.198" } +serde = { version = "1.0.199" } thiserror = { version = "1.0.59" } tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] } tracing = { version = "0.1.40" } diff --git a/backend/chimp_chomp/Cargo.toml b/backend/chimp_chomp/Cargo.toml index 72503847..9f27bfea 100644 --- a/backend/chimp_chomp/Cargo.toml +++ b/backend/chimp_chomp/Cargo.toml @@ -12,7 +12,7 @@ dotenvy = { workspace = true } futures = { version = "0.3.30" } futures-timer = { version = "3.0.3" } itertools = { workspace = true } -lapin = { version = "2.3.1" } +lapin = { version = "2.3.3" } ndarray = { version = "0.15.6" } opencv = { version = "0.88.8", default-features = false, features = [ "imgproc", diff --git a/backend/chimp_controller/Cargo.toml b/backend/chimp_controller/Cargo.toml index 6554f8c0..5f73d3bb 100644 --- a/backend/chimp_controller/Cargo.toml +++ b/backend/chimp_controller/Cargo.toml @@ -12,7 +12,7 @@ cynic = { version = "3.4.3", features = ["http-reqwest"] } dotenvy = { workspace = true } futures-util = { version = "0.3.30" } graphql-ws-client = { version = "0.5.0", features = ["cynic"] } -lapin = { version = "2.2.1", default-features = false, features = ["rustls"] } +lapin = { version = "2.3.3", default-features = false, features = ["rustls"] } reqwest = { version = "0.11.24" } tokio = { workspace = true, features = ["sync"] } url = { workspace = true }