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