go-ssb-room/go.mod

57 lines
2.5 KiB
Modula-2
Raw Normal View History

module github.com/ssb-ngi-pointer/go-ssb-room
2021-01-25 10:39:05 +00:00
go 1.16
2021-01-25 10:39:05 +00:00
require (
github.com/BurntSushi/toml v0.3.1
github.com/PuerkitoBio/goquery v1.5.0
github.com/dustin/go-humanize v1.0.0
2021-02-08 16:47:42 +00:00
github.com/friendsofgo/errors v0.9.2
2021-01-25 10:39:05 +00:00
github.com/go-kit/kit v0.10.0
2021-02-08 16:47:42 +00:00
github.com/gofrs/uuid v4.0.0+incompatible // indirect
2021-02-16 10:20:38 +00:00
github.com/gorilla/csrf v1.7.0
2021-02-08 11:57:14 +00:00
github.com/gorilla/mux v1.8.0
github.com/gorilla/securecookie v1.1.1
github.com/gorilla/sessions v1.2.1
2021-01-25 15:35:22 +00:00
github.com/gorilla/websocket v1.4.2
2021-01-25 10:39:05 +00:00
github.com/keks/nocomment v0.0.0-20181007001506-30c6dcb4a472
2021-02-08 16:47:42 +00:00
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/nicksnyder/go-i18n/v2 v2.1.2
2021-01-25 10:39:05 +00:00
github.com/pkg/errors v0.9.1
github.com/rubenv/sql-migrate v0.0.0-20200616145509-8d140a17f351
github.com/russross/blackfriday/v2 v2.1.0
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
2021-01-25 12:23:03 +00:00
github.com/stretchr/testify v1.6.1
github.com/unrolled/secure v1.0.8
github.com/vcraescu/go-paginator/v2 v2.0.0
2021-03-16 16:13:01 +00:00
github.com/volatiletech/sqlboiler-sqlite3 v0.0.0-20210314195744-a1c697a68aef // indirect
github.com/volatiletech/sqlboiler/v4 v4.5.0
2021-02-08 16:47:42 +00:00
github.com/volatiletech/strmangle v0.0.1
2021-03-17 14:01:34 +00:00
go.cryptoscope.co/muxrpc/v2 v2.0.0-beta.1.0.20210308090127-5f1f5f9cbb59
2021-01-25 12:23:03 +00:00
go.cryptoscope.co/netwrap v0.1.1
2021-01-25 10:39:05 +00:00
go.cryptoscope.co/secretstream v1.2.2
go.mindeco.de v1.9.0
2021-01-25 10:39:05 +00:00
go.mindeco.de/ssb-refs v0.1.1-0.20210108133850-cf1f44fea870
2021-02-08 16:47:42 +00:00
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
2021-03-24 10:39:08 +00:00
golang.org/x/net v0.0.0-20191116160921-f9c825593386 // indirect
2021-01-25 15:35:22 +00:00
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
2021-02-08 16:47:42 +00:00
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/text v0.3.5
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
2021-02-08 11:57:14 +00:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2021-01-25 10:39:05 +00:00
)
2021-01-25 17:39:11 +00:00
exclude go.cryptoscope.co/ssb v0.0.0-20201207161753-31d0f24b7a79
2021-01-25 10:39:05 +00:00
// We need our internal/extra25519 since agl pulled his repo recently.
// Issue: https://github.com/cryptoscope/ssb/issues/44
// Ours uses a fork of x/crypto where edwards25519 is not an internal package,
// This seemed like the easiest change to port agl's extra25519 to use x/crypto
// Background: https://github.com/agl/ed25519/issues/27#issuecomment-591073699
// The branch in use: https://github.com/cryptix/golang_x_crypto/tree/non-internal-edwards
replace golang.org/x/crypto => github.com/cryptix/golang_x_crypto v0.0.0-20200924101112-886946aabeb8
// https://github.com/rubenv/sql-migrate/pull/189
replace github.com/rubenv/sql-migrate => github.com/cryptix/go-sql-migrate v0.0.0-20210218132118-3a09ec3cfca0