forked from gruntwork-io/terratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGopkg.toml
97 lines (80 loc) · 2.43 KB
/
Gopkg.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true
# These dependencies are not directly required by terratest, but are defined here to directly hook them up so that they
# are version locked when it is pulled in by projects depending on terratest.
# This is necessary because kubernetes apimachinery and client-go do not support dep natively, and so overrides are
# necessary to make it work.
# See for more info:
# - https://github.com/kubernetes/client-go/blob/kubernetes-1.11.3/INSTALL.md#dep-not-supported-yet
# - https://golang.github.io/dep/docs/FAQ.html#how-do-i-constrain-a-transitive-dependency-s-version
require = [
"github.com/json-iterator/go",
]
[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "1.14.26"
[[constraint]]
name = "github.com/google/uuid"
version = "0.2.0"
[[constraint]]
name = "github.com/pquerna/otp"
version = "1.0.0"
[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"
[[constraint]]
branch = "master"
name = "golang.org/x/crypto"
[[constraint]]
branch = "master"
name = "golang.org/x/net"
[prune]
go-tests = true
unused-packages = true
[[constraint]]
name = "cloud.google.com/go"
version = "0.35.1"
[[constraint]]
name = "golang.org/x/oauth2"
revision = "d2e6202438beef2727060aa7cabdd924d92ebfd9"
# For reasons we are not entirely sure of it seems Google have not yet
# implemented many API calls including those that work with the Compute
# instances, so we depend on the autogenerated library below in addition
# to the Cloud SDK above. This is inline with other open-source projects
# including Terraform.
[[constraint]]
branch = "master"
name = "google.golang.org/api"
# Kubernetes API
[[constraint]]
branch = "release-1.12"
name = "k8s.io/apimachinery"
[[constraint]]
branch = "release-9.0"
name = "k8s.io/client-go"
[[constraint]]
name = "github.com/json-iterator/go"
version = "v1.1.5"