@@ -6,10 +6,12 @@ go 1.17
6
6
replace github.com/hashicorp/terraform-config-inspect => github.com/kylecarbs/terraform-config-inspect v0.0.0-20211215004401-bbc517866b88
7
7
8
8
// Required until https://github.com/pion/ice/pull/411 is merged.
9
- replace github.com/pion/ice/v2 => github.com/kylecarbs/ice/v2 v2.1.8-0.20220113174531-3e2410788467
9
+ replace github.com/pion/ice/v2 => github.com/kylecarbs/ice/v2 v2.1.8-0.20220113224934-e3297ead83b2
10
10
11
11
require (
12
12
cdr.dev/slog v1.4.1
13
+ github.com/go-chi/chi v1.5.4
14
+ github.com/go-chi/render v1.0.1
13
15
github.com/golang-migrate/migrate/v4 v4.15.1
14
16
github.com/google/uuid v1.3.0
15
17
github.com/hashicorp/go-version v1.3.0
@@ -22,6 +24,7 @@ require (
22
24
github.com/pion/logging v0.2.2
23
25
github.com/pion/transport v0.13.0
24
26
github.com/pion/webrtc/v3 v3.1.13
27
+ github.com/spf13/cobra v1.3.0
25
28
github.com/stretchr/testify v1.7.0
26
29
go.uber.org/atomic v1.7.0
27
30
go.uber.org/goleak v1.1.12
@@ -31,7 +34,6 @@ require (
31
34
)
32
35
33
36
require (
34
- cloud.google.com/go v0.92.3 // indirect
35
37
cloud.google.com/go/storage v1.14.0 // indirect
36
38
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
37
39
github.com/Microsoft/go-winio v0.5.1 // indirect
@@ -50,9 +52,9 @@ require (
50
52
github.com/docker/docker v20.10.12+incompatible // indirect
51
53
github.com/docker/go-connections v0.4.0 // indirect
52
54
github.com/docker/go-units v0.4.0 // indirect
53
- github.com/fatih/color v1.12 .0 // indirect
55
+ github.com/fatih/color v1.13 .0 // indirect
54
56
github.com/gogo/protobuf v1.3.2 // indirect
55
- github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
57
+ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
56
58
github.com/google/go-cmp v0.5.6 // indirect
57
59
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
58
60
github.com/hashicorp/errwrap v1.0.0 // indirect
@@ -62,10 +64,11 @@ require (
62
64
github.com/hashicorp/hcl/v2 v2.0.0 // indirect
63
65
github.com/hashicorp/terraform-json v0.13.0 // indirect
64
66
github.com/imdario/mergo v0.3.12 // indirect
65
- github.com/mattn/go-colorable v0.1.8 // indirect
66
- github.com/mattn/go-isatty v0.0.13 // indirect
67
+ github.com/inconshreveable/mousetrap v1.0.0 // indirect
68
+ github.com/mattn/go-colorable v0.1.12 // indirect
69
+ github.com/mattn/go-isatty v0.0.14 // indirect
67
70
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
68
- github.com/mitchellh/mapstructure v1.4.1 // indirect
71
+ github.com/mitchellh/mapstructure v1.4.3 // indirect
69
72
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
70
73
github.com/opencontainers/go-digest v1.0.0 // indirect
71
74
github.com/opencontainers/image-spec v1.0.2 // indirect
@@ -86,6 +89,7 @@ require (
86
89
github.com/pkg/errors v0.9.1 // indirect
87
90
github.com/pmezard/go-difflib v1.0.0 // indirect
88
91
github.com/sirupsen/logrus v1.8.1 // indirect
92
+ github.com/spf13/pflag v1.0.5 // indirect
89
93
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
90
94
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
91
95
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
@@ -94,9 +98,10 @@ require (
94
98
go.opencensus.io v0.23.0 // indirect
95
99
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
96
100
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
97
- golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
101
+ golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
98
102
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
99
103
golang.org/x/text v0.3.7 // indirect
104
+ google.golang.org/api v0.63.0 // indirect
100
105
google.golang.org/grpc v1.43.0 // indirect
101
106
gopkg.in/yaml.v2 v2.4.0 // indirect
102
107
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
0 commit comments