echoip/go.mod

31 lines
1.0 KiB
Modula-2
Raw Normal View History

2023-10-05 17:43:02 +02:00
module github.com/levelsoftware/echoip
2018-08-27 20:45:51 +02:00
go 1.18
2019-10-18 18:09:25 +02:00
require (
github.com/BurntSushi/toml v1.3.2
github.com/go-redis/cache/v9 v9.0.0
2023-10-10 21:52:05 +02:00
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/oschwald/geoip2-golang v1.5.0
2023-10-05 17:43:02 +02:00
github.com/qioalice/ipstack v1.0.1
github.com/redis/go-redis/v9 v9.2.1
2023-11-05 03:56:51 +01:00
github.com/stretchr/testify v1.8.1
gopkg.in/stretchr/testify.v1 v1.2.2
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2023-11-05 03:56:51 +01:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/oschwald/maxminddb-golang v1.8.0 // indirect
2023-11-05 03:56:51 +01:00
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.4 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.11.0 // indirect
2023-11-05 03:56:51 +01:00
gopkg.in/yaml.v3 v3.0.1 // indirect
)