mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
57b7fa3db8
* More key tweaks * Start testing stuff * Move responsibility for generating local keys into server key API, don't register prom in caches unless needed, start tests * Don't store our own keys in the database * Don't store our own keys in the database * Don't run tests for now * Tweak caching behaviour, update tests * Update comments, add fixes from forward-merge * Debug logging * Debug logging * Perform final comparison against original set of requests * oops * Fetcher timeouts * Fetcher timeouts * missing func * Tweaks * Update gomatrixserverlib * Fix Federation API test * Break up FetchKeys * Add comments to caching * Add URL check in test * Partially revert "Move responsibility for generating local keys into server key API, don't register prom in caches unless needed, start tests" This reverts commit d7eb54c5b30b2f6a9d6514b643e32e6ad2b602f3. * Fix federation API test * Fix internal cache stuff again * Fix server key API test * Update comments * Update comments from review * Fix lint
46 lines
1.9 KiB
Modula-2
46 lines
1.9 KiB
Modula-2
module github.com/matrix-org/dendrite
|
|
|
|
require (
|
|
github.com/Shopify/sarama v1.26.1
|
|
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
|
|
github.com/gologme/log v1.2.0
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
github.com/lib/pq v1.2.0
|
|
github.com/libp2p/go-libp2p v0.6.0
|
|
github.com/libp2p/go-libp2p-circuit v0.1.4
|
|
github.com/libp2p/go-libp2p-core v0.5.0
|
|
github.com/libp2p/go-libp2p-gostream v0.2.1
|
|
github.com/libp2p/go-libp2p-http v0.1.5
|
|
github.com/libp2p/go-libp2p-kad-dht v0.5.0
|
|
github.com/libp2p/go-libp2p-pubsub v0.2.5
|
|
github.com/libp2p/go-libp2p-record v0.1.2
|
|
github.com/libp2p/go-yamux v1.3.7
|
|
github.com/matrix-org/dugong v0.0.0-20171220115018-ea0a4690a0d5
|
|
github.com/matrix-org/go-http-js-libp2p v0.0.0-20200518170932-783164aeeda4
|
|
github.com/matrix-org/go-sqlite3-js v0.0.0-20200522092705-bc8506ccbcf3
|
|
github.com/matrix-org/gomatrix v0.0.0-20190528120928-7df988a63f26
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20200615161710-f69539c86ea5
|
|
github.com/matrix-org/naffka v0.0.0-20200422140631-181f1ee7401f
|
|
github.com/matrix-org/util v0.0.0-20190711121626-527ce5ddefc7
|
|
github.com/mattn/go-sqlite3 v2.0.2+incompatible
|
|
github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
|
|
github.com/ngrok/sqlmw v0.0.0-20200129213757-d5c93a81bec6
|
|
github.com/opentracing/opentracing-go v1.1.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.4.1
|
|
github.com/sirupsen/logrus v1.6.0
|
|
github.com/tidwall/gjson v1.6.0
|
|
github.com/tidwall/sjson v1.0.3
|
|
github.com/uber-go/atomic v1.3.0 // indirect
|
|
github.com/uber/jaeger-client-go v2.15.0+incompatible
|
|
github.com/uber/jaeger-lib v1.5.0
|
|
github.com/yggdrasil-network/yggdrasil-go v0.3.15-0.20200530233943-aec82d7a391b
|
|
go.uber.org/atomic v1.4.0
|
|
golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d
|
|
gopkg.in/h2non/bimg.v1 v1.0.18
|
|
gopkg.in/yaml.v2 v2.2.8
|
|
)
|
|
|
|
go 1.13
|