sliding-sync/go.mod
Kegan Dougal 62f1eb0ee6 Conn: handle positions, retries and blocking operations
This abstracts the long-pollness of the HTTP connection.
Note that we cannot just maintain a server-side buffer of
events to feed down the connection because the client can
drastically alter _which_ events should be fed to the client.
There still needs to be a request/response cycle, except we
can factor out retry handling (duplicate request detection)
and incrementing of the positions.
2021-09-21 16:00:06 +01:00

14 lines
330 B
Modula-2

module github.com/matrix-org/sync-v3
go 1.14
require (
github.com/ReneKroon/ttlcache/v2 v2.8.1
github.com/gorilla/mux v1.8.0
github.com/jmoiron/sqlx v1.3.3
github.com/lib/pq v1.10.1
github.com/matrix-org/gomatrixserverlib v0.0.0-20210510192107-124228cb9548
github.com/rs/zerolog v1.21.0
github.com/tidwall/gjson v1.8.1
)