-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgo.mod
More file actions
33 lines (29 loc) · 1.19 KB
/
Copy pathgo.mod
File metadata and controls
33 lines (29 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module github.com/lrstanley/geoip
go 1.26.0
// TODO: https://github.com/go-chi/httprate/pull/56
replace github.com/go-chi/httprate => github.com/lrstanley/gochi-httprate v0.0.0-20260329223651-a582c3dcf8a3
require (
github.com/go-chi/chi/v5 v5.2.5
github.com/go-chi/httprate v0.15.0
github.com/lrstanley/chix/v2 v2.0.0-beta.1
github.com/lrstanley/clix/v2 v2.0.0
github.com/lrstanley/go-bogon v1.0.0
github.com/lrstanley/x/sync v0.0.0-20260331013828-98de5249208d
github.com/oschwald/maxminddb-golang v1.13.1
)
require (
github.com/alecthomas/kong v1.14.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
github.com/go-playground/form/v4 v4.3.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.30.2 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lmittmann/tint v1.1.3 // indirect
github.com/stretchr/testify v1.10.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.35.0 // indirect
)