qrz/go.mod

40 lines
1.3 KiB
Modula-2
Raw Normal View History

2020-01-29 12:25:06 +01:00
module git.paulbsd.com/paulbsd/qrz
2019-09-07 11:58:52 +02:00
2024-08-19 03:34:22 +02:00
go 1.23
2019-09-07 11:58:52 +02:00
require (
2024-08-19 03:34:22 +02:00
github.com/antchfx/htmlquery v1.3.2
github.com/antchfx/xpath v1.3.1 // indirect
2021-08-30 19:45:06 +02:00
github.com/golang/snappy v0.0.4 // indirect
2024-04-20 09:40:17 +02:00
github.com/labstack/echo/v4 v4.12.0
2023-05-17 13:27:48 +02:00
github.com/lib/pq v1.10.9
2022-10-30 14:50:22 +01:00
github.com/mattn/go-colorable v0.1.13 // indirect
2024-09-02 22:01:28 +02:00
github.com/mattn/go-sqlite3 v1.14.22
2022-10-30 14:50:22 +01:00
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.23.0 // indirect
github.com/robfig/cron v1.2.0
2024-08-19 03:34:22 +02:00
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/net v0.28.0
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
2022-10-30 14:50:22 +01:00
gopkg.in/ini.v1 v1.67.0
2023-08-23 17:32:53 +02:00
xorm.io/builder v0.3.13 // indirect
2024-04-20 09:40:17 +02:00
xorm.io/xorm v1.3.9
2021-08-30 19:45:06 +02:00
)
2024-09-02 22:01:28 +02:00
require github.com/go-sql-driver/mysql v1.8.1
2021-08-30 19:45:06 +02:00
require (
2024-09-02 22:01:28 +02:00
filippo.io/edwards25519 v1.1.0 // indirect
2024-08-19 03:34:22 +02:00
github.com/goccy/go-json v0.10.3 // indirect
2021-08-30 19:45:06 +02:00
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2022-03-26 12:13:52 +01:00
github.com/json-iterator/go v1.1.12 // indirect
2024-03-17 10:12:22 +01:00
github.com/labstack/gommon v0.4.2 // indirect
2023-11-02 12:38:06 +01:00
github.com/mattn/go-isatty v0.0.20 // indirect
2021-08-30 19:45:06 +02:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2022-03-26 12:13:52 +01:00
github.com/modern-go/reflect2 v1.0.2 // indirect
2021-08-30 19:45:06 +02:00
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
2022-10-30 14:50:22 +01:00
github.com/valyala/fasttemplate v1.2.2 // indirect
2019-09-07 11:58:52 +02:00
)