ergo/go.mod

46 lines
1.7 KiB
Modula-2
Raw Normal View History

2021-05-25 06:34:38 +02:00
module github.com/ergochat/ergo
2020-02-10 02:49:38 +01:00
2022-08-03 06:56:19 +02:00
go 1.19
2020-02-10 02:49:38 +01:00
require (
2020-03-09 04:32:58 +01:00
code.cloudfoundry.org/bytefmt v0.0.0-20200131002437-cf55d5288a48
2020-10-02 22:48:37 +02:00
github.com/GehirnInc/crypt v0.0.0-20200316065508-bb7000b8a962
2020-02-10 02:49:38 +01:00
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/ergochat/confusables v0.0.0-20201108231250-4ab98ab61fb1
github.com/ergochat/go-ident v0.0.0-20200511222032-830550b1d775
2022-01-20 23:59:57 +01:00
github.com/ergochat/irc-go v0.1.0
2021-04-19 12:42:39 +02:00
github.com/go-sql-driver/mysql v1.6.0
2020-06-12 23:11:19 +02:00
github.com/go-test/deep v1.0.6 // indirect
2021-11-17 00:18:03 +01:00
github.com/golang-jwt/jwt v3.2.2+incompatible
2020-04-30 21:35:17 +02:00
github.com/gorilla/websocket v1.4.2
github.com/okzk/sdnotify v0.0.0-20180710141335-d9becc38acbd
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/stretchr/testify v1.4.0 // indirect
2022-06-16 19:36:02 +02:00
github.com/tidwall/buntdb v1.2.9
2020-11-08 23:56:46 +01:00
github.com/toorop/go-dkim v0.0.0-20201103131630-e1cd1a0a5208
2021-07-30 18:20:13 +02:00
github.com/xdg-go/scram v1.0.2
2022-06-17 16:47:28 +02:00
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
2021-11-17 00:18:03 +01:00
golang.org/x/text v0.3.7
2021-04-19 12:50:34 +02:00
gopkg.in/yaml.v2 v2.4.0
2020-02-10 02:49:38 +01:00
)
require github.com/gofrs/flock v0.8.1
2021-08-20 21:57:08 +02:00
require (
2022-06-16 19:36:02 +02:00
github.com/tidwall/btree v1.1.0 // indirect
github.com/tidwall/gjson v1.12.1 // indirect
github.com/tidwall/grect v0.1.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
2021-08-20 21:57:08 +02:00
github.com/tidwall/rtred v0.1.2 // indirect
github.com/tidwall/tinyqueue v0.1.1 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
2021-11-17 00:18:03 +01:00
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
2021-08-20 21:57:08 +02:00
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
)
replace github.com/gorilla/websocket => github.com/ergochat/websocket v1.4.2-oragono1
2021-07-30 18:20:13 +02:00
replace github.com/xdg-go/scram => github.com/ergochat/scram v1.0.2-ergo1