happy-appointment-69008
01/25/2023, 2:28 PMDioxus LiveView + WebSockets + `Axum`server. Unfortunately, liveview depends on tokio to be at least ^1.23.1 but shuttle is fixed to be =1.22.0 so they don't work together.
I had to hack my setup and patch tokio Cargo dependencies to bypass the requirements. It works perfectly locally with cargo shuttle run but sadly can't deploy.
I understand that shuttle-service probably had to fix some dependencies so CI/CD will be immutable and easily reproducible but tokio is a fast paced crate with versions outdated within weeks and a lot of other crates depend on it. Is there a workaround for this and so I can deploy? Thanks🦀!happy-appointment-69008
01/25/2023, 2:47 PMdioxus-liveview is outdated by 9 months. I tried it but didn't work without mostly rewriting everything in liveview section. I'll search for some old documentation that maybe help me out. I'll share any progress