mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
🐛 fix(input): Retry when namespace doesn't exist (#65)
## Description **What issue are you solving (or what feature are you adding) and how are you doing it?** `Warp-input` server errors out when the namespace or `session_id` has not yet been created on our relay. This is a problem, as we do not know when the user will start playing. The idea is to have the bin/input run both a server and a client at the same time. Which can be used to then transmit bidirectional information.
This commit is contained in:
@@ -5,15 +5,17 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.82"
|
||||
chrono = "0.4.38"
|
||||
clap = "4.5.4"
|
||||
enigo = "0.2.1"
|
||||
env_logger = "0.11.3"
|
||||
log = "0.4.21"
|
||||
moq-native = { git = "https://github.com/kixelated/moq-rs", version = "0.1.0" }
|
||||
moq-transport = { git = "https://github.com/kixelated/moq-rs", version = "0.5.0" }
|
||||
rand = "0.8.5"
|
||||
serde = { version="1.0.202" , features = ["derive"]}
|
||||
serde_json = "1.0.117"
|
||||
tokio = "1.37.0"
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = "0.3.18"
|
||||
url = "2.5.0"
|
||||
url = "2.5.0"
|
||||
Reference in New Issue
Block a user