-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
31 lines (28 loc) · 1.01 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
module github.com/devel/dnsmapper
go 1.20
require (
github.com/ant0ine/go-json-rest v3.3.3-0.20170913041208-ebb33769ae01+incompatible
github.com/gorilla/handlers v1.5.1
github.com/hashicorp/golang-lru v1.0.2
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.10.9
github.com/miekg/dns v1.1.56
github.com/oschwald/geoip2-golang v1.9.0
github.com/stretchr/testify v1.8.4
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
golang.org/x/mod v0.13.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/tools v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)