-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathgo.mod
30 lines (27 loc) · 1017 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/jiyeyuran/mediasoup-go
go 1.18
require (
github.com/go-logr/logr v1.2.3
github.com/go-logr/zerologr v1.2.2
github.com/gobwas/glob v0.2.3
github.com/google/uuid v1.3.0
github.com/hashicorp/go-version v1.4.0
github.com/imdario/mergo v0.3.11
github.com/pion/logging v0.2.2
github.com/pion/sctp v1.7.11
github.com/rs/zerolog v1.27.0
github.com/stretchr/testify v1.6.1
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pion/randutil v0.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)