Files
neon/proxy/src
Dmitry Ivanov 9657459d80 [proxy] Fix possible unsoundness in the websocket machinery (#3569)
This PR replaces the ill-advised `unsafe Sync` impl with a de-facto
standard way to solve the underlying problem.

TLDR:
- tokio::task::spawn requires future to be Send
- ∀t. (t : Sync) <=> (&t : Send)
- ∀t. (t : Send + !Sync) => (&t : !Send)
2023-02-10 12:45:38 +03:00
..
2022-12-22 14:27:48 +02:00
2023-01-06 18:34:18 +03:00
2023-01-16 15:17:28 +00:00
2022-07-04 23:46:37 +03:00