no more cargo advisories ignored

This commit is contained in:
2026-03-05 15:48:35 -06:00
parent 9af3192d1d
commit 4b0000c116
10 changed files with 244 additions and 844 deletions

View File

@@ -62,7 +62,7 @@ impl RuleLifecycleListener {
consumer
.channel()
.queue_declare(
queue,
queue.into(),
lapin::options::QueueDeclareOptions {
durable: true,
exclusive: false,
@@ -78,9 +78,9 @@ impl RuleLifecycleListener {
consumer
.channel()
.queue_bind(
queue,
exchange,
routing_key,
queue.into(),
exchange.into(),
(*routing_key).into(),
lapin::options::QueueBindOptions::default(),
lapin::types::FieldTable::default(),
)