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