@@ -2,9 +2,17 @@ module github.com/coder/coder
2
2
3
3
go 1.17
4
4
5
+ // Required until https://github.com/hashicorp/terraform-config-inspect/pull/74 is merged.
6
+ replace github.com/hashicorp/terraform-config-inspect => github.com/kylecarbs/terraform-config-inspect v0.0.0-20211215004401-bbc517866b88
7
+
5
8
require (
6
9
cdr.dev/slog v1.4.1
7
10
github.com/golang-migrate/migrate/v4 v4.15.1
11
+ github.com/google/uuid v1.3.0
12
+ github.com/hashicorp/go-version v1.3.0
13
+ github.com/hashicorp/hc-install v0.3.1
14
+ github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
15
+ github.com/hashicorp/terraform-exec v0.15.0
8
16
github.com/lib/pq v1.10.4
9
17
github.com/ory/dockertest/v3 v3.8.1
10
18
github.com/pion/datachannel v1.5.2
@@ -15,13 +23,20 @@ require (
15
23
go.uber.org/atomic v1.7.0
16
24
go.uber.org/goleak v1.1.12
17
25
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
26
+ google.golang.org/protobuf v1.27.1
27
+ storj.io/drpc v0.0.26
18
28
)
19
29
20
30
require (
31
+ cloud.google.com/go v0.92.3 // indirect
32
+ cloud.google.com/go/storage v1.14.0 // indirect
21
33
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
22
34
github.com/Microsoft/go-winio v0.5.1 // indirect
23
35
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
36
+ github.com/agext/levenshtein v1.2.2 // indirect
24
37
github.com/alecthomas/chroma v0.9.1 // indirect
38
+ github.com/apparentlymart/go-textseg v1.0.0 // indirect
39
+ github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
25
40
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
26
41
github.com/containerd/continuity v0.1.0 // indirect
27
42
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
@@ -35,13 +50,18 @@ require (
35
50
github.com/fatih/color v1.12.0 // indirect
36
51
github.com/gogo/protobuf v1.3.2 // indirect
37
52
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
53
+ github.com/google/go-cmp v0.5.6 // indirect
38
54
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
39
- github.com/google/uuid v1.3.0 // indirect
40
55
github.com/hashicorp/errwrap v1.0.0 // indirect
41
- github.com/hashicorp/go-multierror v1.1.0 // indirect
56
+ github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
57
+ github.com/hashicorp/go-multierror v1.1.1 // indirect
58
+ github.com/hashicorp/hcl v1.0.0 // indirect
59
+ github.com/hashicorp/hcl/v2 v2.0.0 // indirect
60
+ github.com/hashicorp/terraform-json v0.13.0 // indirect
42
61
github.com/imdario/mergo v0.3.12 // indirect
43
62
github.com/mattn/go-colorable v0.1.8 // indirect
44
- github.com/mattn/go-isatty v0.0.12 // indirect
63
+ github.com/mattn/go-isatty v0.0.13 // indirect
64
+ github.com/mitchellh/go-wordwrap v1.0.0 // indirect
45
65
github.com/mitchellh/mapstructure v1.4.1 // indirect
46
66
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
47
67
github.com/opencontainers/go-digest v1.0.0 // indirect
@@ -66,11 +86,15 @@ require (
66
86
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
67
87
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
68
88
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
89
+ github.com/zclconf/go-cty v1.9.1 // indirect
90
+ github.com/zeebo/errs v1.2.2 // indirect
69
91
go.opencensus.io v0.23.0 // indirect
70
92
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
71
93
golang.org/x/net v0.0.0-20211215060638-4ddde0e984e9 // indirect
72
94
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
73
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
95
+ golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
96
+ golang.org/x/text v0.3.7 // indirect
97
+ google.golang.org/grpc v1.43.0 // indirect
74
98
gopkg.in/yaml.v2 v2.4.0 // indirect
75
99
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
76
100
)
0 commit comments