mirror of
https://github.com/matrix-org/sliding-sync.git
synced 2025-03-10 13:37:11 +00:00
37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module github.com/matrix-org/sliding-sync
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/ReneKroon/ttlcache/v2 v2.8.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
github.com/jmoiron/sqlx v1.3.3
|
|
github.com/lib/pq v1.10.1
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20230105074811-965b10ae73ab
|
|
github.com/matrix-org/util v0.0.0-20200807132607-55161520e1d4
|
|
github.com/prometheus/client_golang v1.13.0
|
|
github.com/rs/zerolog v1.21.0
|
|
github.com/tidwall/gjson v1.14.3
|
|
github.com/tidwall/sjson v1.2.5
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/matrix-org/gomatrix v0.0.0-20210324163249-be2af5ef2e16 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
github.com/rs/xid v1.2.1 // indirect
|
|
github.com/sirupsen/logrus v1.9.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
golang.org/x/crypto v0.5.0 // indirect
|
|
golang.org/x/sync v0.0.0-20220907140024-f12130a52804 // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
)
|