feature(receiver): adapted receiver to work with a simple generated name

This commit is contained in:
Patryk Hegenberg 2024-04-28 23:55:55 +02:00
parent 8b62159762
commit 9f7b95ca98
3 changed files with 49 additions and 9 deletions

View file

@ -17,7 +17,9 @@ path = "src/shuttle.rs"
futures-util = "0.3"
tungstenite = "0.21.0"
tokio = { version = "1.28.1", features = ["full"] }
tokio-tungstenite = { version = "0.21.0", features =["rustls-tls-webpki-roots"] }
tokio-tungstenite = { version = "0.21.0", features = [
"rustls-tls-webpki-roots",
] }
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.3.2", features = ["v4"] }
@ -47,8 +49,8 @@ tower = { version = "0.4", features = ["util"] }
shuttle-axum = { version = "0.44.0" }
shuttle-runtime = { version = "0.44.0" }
dotenvy = "0.15.7"
reqwest = { version = "0.12.4", features = ["blocking", "json"] }
hex = "0.4.3"
reqwest = { version = "0.12.4", features = ["json", "blocking"] }
[build-dependencies]
prost-build = "0.12.4"