forked from Loyalsoldier/geoip
-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
33 lines (30 loc) · 1.08 KB
/
go.mod
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 geoip
go 1.23.3
require (
github.com/Loyalsoldier/geoip v0.0.0-20241104153047-be06655e8594
github.com/maxmind/mmdbwriter v1.0.0
github.com/oschwald/geoip2-golang v1.11.0
github.com/oschwald/maxminddb-golang v1.13.1
github.com/spf13/cobra v1.8.1
github.com/tailscale/hujson v0.0.0-20241010212012-29efb4a0184b
github.com/tidwall/gjson v1.18.0
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
google.golang.org/protobuf v1.35.2
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/miekg/dns v1.1.62 // indirect
github.com/sagernet/sing v0.5.0 // indirect
github.com/sagernet/sing-box v1.10.1 // indirect
github.com/sagernet/sing-dns v0.3.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/sync v0.9.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/tools v0.27.0 // indirect
)