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
2024-03-21 07:42:39 +01:00
go 1.22
2021-11-07 20:44:48 +01:00
require (
2024-05-11 18:03:51 +02:00
github.com/labstack/echo/v4 v4.12.0
2023-04-28 17:51:43 +02:00
github.com/lib/pq v1.10.9
2024-05-11 18:03:51 +02:00
golang.org/x/net v0.25.0
2022-10-16 23:27:39 +02:00
gopkg.in/ini.v1 v1.67.0
2024-03-21 07:42:39 +01:00
xorm.io/xorm v1.3.9
2021-11-07 20:44:48 +01:00
)
require (
2024-05-30 09:09:13 +02:00
github.com/goccy/go-json v0.10.3 // 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
2024-05-11 18:03:51 +02:00
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
xorm.io/builder v0.3.13 // indirect
2021-11-07 20:44:48 +01:00
)