ipbl/go.mod

33 lines
1.1 KiB
Modula-2
Raw Normal View History

2021-11-07 20:44:48 +01:00
module git.paulbsd.com/paulbsd/ipbl
2022-07-01 10:25:48 +02:00
go 1.18
2021-11-07 20:44:48 +01:00
require (
2022-03-19 16:21:19 +01:00
github.com/labstack/echo/v4 v4.7.2
2022-06-05 23:07:32 +02:00
github.com/lib/pq v1.10.6
gopkg.in/ini.v1 v1.66.6
2022-03-11 23:34:09 +01:00
gopkg.in/zeromq/goczmq.v4 v4.1.0
2022-06-05 23:07:32 +02:00
xorm.io/xorm v1.3.1
2021-11-07 20:44:48 +01:00
)
require (
2022-07-16 11:42:03 +02:00
github.com/goccy/go-json v0.9.10 // indirect
2021-11-07 20:44:48 +01:00
github.com/golang/snappy v0.0.4 // indirect
2021-12-12 17:33:40 +01:00
github.com/json-iterator/go v1.1.12 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
2021-11-07 20:44:48 +01:00
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2021-12-12 17:33:40 +01:00
github.com/modern-go/reflect2 v1.0.2 // indirect
2021-11-07 20:44:48 +01:00
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.14.0 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
2022-07-01 10:25:48 +02:00
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
2022-07-16 11:42:03 +02:00
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
2021-11-07 20:44:48 +01:00
golang.org/x/text v0.3.7 // indirect
2022-07-16 11:42:03 +02:00
xorm.io/builder v0.3.12 // indirect
2021-11-07 20:44:48 +01:00
)