queuing things

This commit is contained in:
nora 2022-03-07 16:33:52 +01:00
parent 2fe3b4b77b
commit 770762b920
16 changed files with 102 additions and 13 deletions

6
Cargo.lock generated
View file

@ -36,6 +36,7 @@ dependencies = [
name = "amqp_core"
version = "0.1.0"
dependencies = [
"amqp_datastructure",
"bytes",
"parking_lot",
"rand",
@ -62,11 +63,16 @@ dependencies = [
"zip",
]
[[package]]
name = "amqp_datastructure"
version = "0.1.0"
[[package]]
name = "amqp_messaging"
version = "0.1.0"
dependencies = [
"amqp_core",
"amqp_datastructure",
"parking_lot",
"tokio",
"tracing",