mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
73d2f59e30
* Add libp2p-go * Some tweaks, tidying up (cherry picked from commit 1a5bb121f8121c4f68a27abbf25a9a35a1b7c63e) * Move p2p dockerfile (cherry picked from commit 8d3bf44ea1bf37f950034e73bcdc315afdabe79a) * Remove containsBackwardsExtremity * Fix some linter errors, update some libp2p packages/calls, other tidying up * Add -port for dendrite-p2p-demo * Use instance name as key ID * Remove P2P demo docker stuff, no longer needed now that we have SQLite * Remove Dockerfile-p2p too * Remove p2p logic from dendrite-monolith-server * Inject publicRoomsDB in publicroomsapi Inject publicRoomsDB instead of switching on base.libP2P. See: https://github.com/matrix-org/dendrite/pull/956/files?file-filters%5B%5D=.go#r406276914 * Fix lint warning * Extract mDNSListener from base.go * Extract CreateFederationClient into demo * Create P2PDendrite from BaseDendrite Extract logic specific to P2PDendrite from base.go * Set base.go to upstream/master * Move pubsub to demo cmd * Move PostgreswithDHT to cmd * Remove unstable features * Add copyrights * Move libp2pvalidator into p2pdendrite * Rename dendrite-p2p-demo -> dendrite-demo-libp2p * Update copyrights * go mod tidy Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
44 lines
1.8 KiB
Modula-2
44 lines
1.8 KiB
Modula-2
module github.com/matrix-org/dendrite
|
|
|
|
require (
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
github.com/kr/pretty v0.2.0 // indirect
|
|
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/matrix-org/dugong v0.0.0-20171220115018-ea0a4690a0d5
|
|
github.com/matrix-org/go-http-js-libp2p v0.0.0-20200318135427-31631a9ef51f
|
|
github.com/matrix-org/go-sqlite3-js v0.0.0-20200325174927-327088cdef10
|
|
github.com/matrix-org/gomatrix v0.0.0-20190528120928-7df988a63f26
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20200409140603-8b9a51fe9b89
|
|
github.com/matrix-org/naffka v0.0.0-20200127221512-0716baaabaf1
|
|
github.com/matrix-org/util v0.0.0-20190711121626-527ce5ddefc7
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
|
github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
|
|
github.com/opentracing/opentracing-go v1.1.0
|
|
github.com/pierrec/lz4 v2.5.0+incompatible // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.4.1
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
|
|
github.com/sirupsen/logrus v1.4.2
|
|
github.com/tidwall/gjson v1.6.0 // indirect
|
|
github.com/tidwall/pretty v1.0.1 // indirect
|
|
github.com/uber/jaeger-client-go v2.22.1+incompatible
|
|
github.com/uber/jaeger-lib v2.2.0+incompatible
|
|
go.uber.org/atomic v1.6.0
|
|
golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d
|
|
golang.org/x/tools v0.0.0-20200402223321-bcf690261a44 // indirect
|
|
gopkg.in/Shopify/sarama.v1 v1.20.1
|
|
gopkg.in/h2non/bimg.v1 v1.0.18
|
|
gopkg.in/yaml.v2 v2.2.8
|
|
)
|
|
|
|
go 1.13
|