ipbl/go.mod

33 lines
1.0 KiB
Modula-2
Raw Normal View History

2021-11-07 20:44:48 +01:00
module git.paulbsd.com/paulbsd/ipbl
2023-11-10 23:16:44 +01:00
go 1.21
2021-11-07 20:44:48 +01:00
require (
2023-12-24 09:36:41 +01:00
github.com/labstack/echo/v4 v4.11.4
2023-04-28 17:51:43 +02:00
github.com/lib/pq v1.10.9
golang.org/x/net v0.20.0
2022-10-16 23:27:39 +02:00
gopkg.in/ini.v1 v1.67.0
xorm.io/xorm v1.3.7
2021-11-07 20:44:48 +01:00
)
require (
2023-03-26 11:18:08 +02:00
github.com/goccy/go-json v0.10.2 // indirect
2021-11-07 20:44:48 +01:00
github.com/golang/snappy v0.0.4 // indirect
2022-10-16 23:27:39 +02:00
github.com/google/go-cmp v0.5.9 // indirect
2021-12-12 17:33:40 +01:00
github.com/json-iterator/go v1.1.12 // indirect
2023-12-24 09:36:41 +01:00
github.com/labstack/gommon v0.4.2 // indirect
2022-10-16 23:27:39 +02:00
github.com/mattn/go-colorable v0.1.13 // indirect
2023-10-21 02:38:57 +02:00
github.com/mattn/go-isatty v0.0.20 // indirect
2021-11-07 20:44:48 +01:00
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
2022-10-16 23:27:39 +02:00
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.22.1 // indirect
2021-11-07 20:44:48 +01:00
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
2023-01-14 13:28:44 +01:00
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sys v0.16.0 // indirect
2023-11-10 23:16:44 +01:00
golang.org/x/text v0.14.0 // indirect
xorm.io/builder v0.3.13 // indirect
2021-11-07 20:44:48 +01:00
)