GitHub - rasviitanen/rustysignal: Signal...
Hey guys trying to build a Signalling Server with Rust based on this repo:
https://github.com/rasviitanen/rustysignal/tree/master
Facing some issues when accounting for worker-rs instead.
Here's some code:
I notice that the durable object macro panics with this error:
How do I go about it?
GitHub
GitHub - rasviitanen/rustysignal: Signaling server for WebRTC that ...
Signaling server for WebRTC that supports SSL-encrypted connections - GitHub - rasviitanen/rustysignal: Signaling server for WebRTC that supports SSL-encrypted connections
2 Replies
This is interesting. I was able to reproduce your problem but only when the
nodemap
field is pub
. Maybe this is just some random bug in the durable_object macro?
can you get by keeping nodemap
as private?Hey radix. Yeah it works thanks!