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
|
module github.com/mimuret/golang-iij-dpf
go 1.16
require (
github.com/google/go-querystring v1.1.0
github.com/google/uuid v1.3.0
github.com/jarcoal/httpmock v1.0.8
github.com/json-iterator/go v1.1.12
github.com/miekg/dns v1.1.47
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.18.1
)
require (
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo/v2 v2.1.3 // indirect
github.com/stretchr/testify v1.7.1 // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
|