@@ -3,10 +3,16 @@ module github.com/coder/coder
3
3
go 1.17
4
4
5
5
require (
6
+ cdr.dev/slog v1.4.1
6
7
github.com/golang-migrate/migrate/v4 v4.15.1
7
8
github.com/lib/pq v1.10.4
8
9
github.com/ory/dockertest/v3 v3.8.1
10
+ github.com/pion/datachannel v1.5.2
11
+ github.com/pion/logging v0.2.2
12
+ github.com/pion/transport v0.13.0
13
+ github.com/pion/webrtc/v3 v3.1.13
9
14
github.com/stretchr/testify v1.7.0
15
+ go.uber.org/atomic v1.7.0
10
16
go.uber.org/goleak v1.1.12
11
17
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
12
18
)
@@ -15,33 +21,56 @@ require (
15
21
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
16
22
github.com/Microsoft/go-winio v0.5.1 // indirect
17
23
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
24
+ github.com/alecthomas/chroma v0.9.1 // indirect
18
25
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
19
26
github.com/containerd/continuity v0.1.0 // indirect
27
+ github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
20
28
github.com/davecgh/go-spew v1.1.1 // indirect
21
29
github.com/dhui/dktest v0.3.8 // indirect
30
+ github.com/dlclark/regexp2 v1.4.0 // indirect
22
31
github.com/docker/cli v20.10.11+incompatible // indirect
23
32
github.com/docker/docker v20.10.12+incompatible // indirect
24
33
github.com/docker/go-connections v0.4.0 // indirect
25
34
github.com/docker/go-units v0.4.0 // indirect
35
+ github.com/fatih/color v1.12.0 // indirect
26
36
github.com/gogo/protobuf v1.3.2 // indirect
37
+ github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
27
38
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
39
+ github.com/google/uuid v1.3.0 // indirect
28
40
github.com/hashicorp/errwrap v1.0.0 // indirect
29
41
github.com/hashicorp/go-multierror v1.1.0 // indirect
30
42
github.com/imdario/mergo v0.3.12 // indirect
43
+ github.com/mattn/go-colorable v0.1.8 // indirect
44
+ github.com/mattn/go-isatty v0.0.12 // indirect
31
45
github.com/mitchellh/mapstructure v1.4.1 // indirect
32
46
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
33
47
github.com/opencontainers/go-digest v1.0.0 // indirect
34
48
github.com/opencontainers/image-spec v1.0.2 // indirect
35
49
github.com/opencontainers/runc v1.0.2 // indirect
50
+ github.com/pion/dtls/v2 v2.0.13 // indirect
51
+ github.com/pion/ice/v2 v2.1.18 // indirect
52
+ github.com/pion/interceptor v0.1.4 // indirect
53
+ github.com/pion/mdns v0.0.5 // indirect
54
+ github.com/pion/randutil v0.1.0 // indirect
55
+ github.com/pion/rtcp v1.2.9 // indirect
56
+ github.com/pion/rtp v1.7.4 // indirect
57
+ github.com/pion/sctp v1.8.2 // indirect
58
+ github.com/pion/sdp/v3 v3.0.4 // indirect
59
+ github.com/pion/srtp/v2 v2.0.5 // indirect
60
+ github.com/pion/stun v0.3.5 // indirect
61
+ github.com/pion/turn/v2 v2.0.6 // indirect
62
+ github.com/pion/udp v0.1.1 // indirect
36
63
github.com/pkg/errors v0.9.1 // indirect
37
64
github.com/pmezard/go-difflib v1.0.0 // indirect
38
65
github.com/sirupsen/logrus v1.8.1 // indirect
39
66
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
40
67
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
41
68
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
42
- go.uber.org/atomic v1.7.0 // indirect
43
- golang.org/x/net v0.0.0-20211013171255-e13a2654a71e // indirect
69
+ go.opencensus.io v0.23.0 // indirect
70
+ golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
71
+ golang.org/x/net v0.0.0-20211215060638-4ddde0e984e9 // indirect
44
72
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
73
+ golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
45
74
gopkg.in/yaml.v2 v2.4.0 // indirect
46
75
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
47
76
)
0 commit comments