2019-05-21 22:56:55 +02:00
|
|
|
module github.com/matrix-org/dendrite
|
|
|
|
|
|
|
|
require (
|
2020-09-14 17:39:38 +02:00
|
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
2021-03-03 12:08:41 +01:00
|
|
|
github.com/HdrHistogram/hdrhistogram-go v1.0.1 // indirect
|
|
|
|
github.com/Shopify/sarama v1.28.0
|
2021-03-24 11:25:24 +01:00
|
|
|
github.com/getsentry/sentry-go v0.10.0
|
2020-06-10 11:54:06 +02:00
|
|
|
github.com/gologme/log v1.2.0
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-05-06 13:00:42 +02:00
|
|
|
github.com/gorilla/websocket v1.4.2
|
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 11:23:55 +01:00
|
|
|
github.com/hashicorp/golang-lru v0.5.4
|
2021-03-03 12:08:41 +01:00
|
|
|
github.com/lib/pq v1.9.0
|
2021-02-18 11:14:24 +01:00
|
|
|
github.com/libp2p/go-libp2p v0.13.0
|
|
|
|
github.com/libp2p/go-libp2p-circuit v0.4.0
|
|
|
|
github.com/libp2p/go-libp2p-core v0.8.3
|
|
|
|
github.com/libp2p/go-libp2p-gostream v0.3.1
|
|
|
|
github.com/libp2p/go-libp2p-http v0.2.0
|
|
|
|
github.com/libp2p/go-libp2p-kad-dht v0.11.1
|
|
|
|
github.com/libp2p/go-libp2p-pubsub v0.4.1
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/libp2p/go-libp2p-record v0.1.3
|
2021-05-06 13:00:42 +02:00
|
|
|
github.com/lucas-clemente/quic-go v0.19.3
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/matrix-org/dugong v0.0.0-20180820122854-51a565b5666b
|
2020-05-18 19:12:11 +02:00
|
|
|
github.com/matrix-org/go-http-js-libp2p v0.0.0-20200518170932-783164aeeda4
|
2020-05-22 13:28:48 +02:00
|
|
|
github.com/matrix-org/go-sqlite3-js v0.0.0-20200522092705-bc8506ccbcf3
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/matrix-org/gomatrix v0.0.0-20200827122206-7dd5e2a05bcd
|
2021-06-16 10:07:41 +02:00
|
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20210525110027-8cb7699aa64a
|
2021-03-03 12:08:41 +01:00
|
|
|
github.com/matrix-org/naffka v0.0.0-20201009174903-d26a3b9cb161
|
2021-06-22 16:39:29 +02:00
|
|
|
github.com/matrix-org/pinecone v0.0.0-20210622111727-6e630fb016ac
|
2020-08-07 16:00:23 +02:00
|
|
|
github.com/matrix-org/util v0.0.0-20200807132607-55161520e1d4
|
2021-04-26 14:25:57 +02:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.7-0.20210414154423-1157a4212dcb
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
|
2020-04-16 11:06:55 +02:00
|
|
|
github.com/ngrok/sqlmw v0.0.0-20200129213757-d5c93a81bec6
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
2020-04-14 17:15:59 +02:00
|
|
|
github.com/pkg/errors v0.9.1
|
2021-03-03 12:08:41 +01:00
|
|
|
github.com/pressly/goose v2.7.0+incompatible
|
|
|
|
github.com/prometheus/client_golang v1.9.0
|
|
|
|
github.com/sirupsen/logrus v1.8.0
|
|
|
|
github.com/tidwall/gjson v1.6.8
|
|
|
|
github.com/tidwall/sjson v1.1.5
|
2020-09-01 11:20:31 +02:00
|
|
|
github.com/uber/jaeger-client-go v2.25.0+incompatible
|
2021-03-03 12:08:41 +01:00
|
|
|
github.com/uber/jaeger-lib v2.4.0+incompatible
|
2021-02-18 10:45:55 +01:00
|
|
|
github.com/yggdrasil-network/yggdrasil-go v0.3.15-0.20210218094457-e77ca8019daa
|
2021-03-03 12:08:41 +01:00
|
|
|
go.uber.org/atomic v1.7.0
|
|
|
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
|
2021-05-25 10:49:02 +02:00
|
|
|
golang.org/x/mobile v0.0.0-20210220033013-bdb1ca9a1e08
|
2021-03-03 12:08:41 +01:00
|
|
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
|
2021-06-22 16:39:29 +02:00
|
|
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
|
2021-03-03 12:08:41 +01:00
|
|
|
gopkg.in/h2non/bimg.v1 v1.1.5
|
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-05-21 22:56:55 +02:00
|
|
|
)
|
2019-12-17 17:47:45 +01:00
|
|
|
|
2021-05-06 13:00:42 +02:00
|
|
|
go 1.14
|