-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
30 lines (28 loc) · 1.31 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
module github.com/terraform-in-action/terraform-provider-petstore
go 1.14
require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/fatih/color v1.10.0 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/hcl/v2 v2.8.1 // indirect
github.com/hashicorp/terraform-plugin-go v0.2.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.0
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.4.0 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/terraform-in-action/go-petstore v0.1.2
github.com/zclconf/go-cty v1.7.1 // indirect
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
golang.org/x/sys v0.0.0-20201223074533-0d417f636930 // indirect
golang.org/x/text v0.3.4 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d // indirect
google.golang.org/grpc v1.34.0 // indirect
)