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
go 1.17
require (
2022-03-11 23:34:09 +01:00
github.com/labstack/echo/v4 v4.7.0
2021-12-12 17:33:40 +01:00
github.com/lib/pq v1.10.4
2022-02-22 14:43:07 +01:00
gopkg.in/ini.v1 v1.66.4
2022-03-11 23:34:09 +01:00
gopkg.in/zeromq/goczmq.v4 v4.1.0
2021-11-07 20:44:48 +01:00
xorm.io/xorm v1.2.5
)
require (
2022-03-11 23:34:09 +01:00
github.com/goccy/go-json v0.9.5 // 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-03-11 23:34:09 +01:00
golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
2021-11-07 20:44:48 +01:00
golang.org/x/text v0.3.7 // indirect
xorm.io/builder v0.3.9 // indirect
)