forked from u2takey/ffmpeg-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
43 lines (39 loc) · 1.62 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/schaffung/ffmpeg-go
go 1.21
toolchain go1.23.0
require (
github.com/disintegration/imaging v1.6.2
github.com/stretchr/testify v1.9.0
github.com/u2takey/go-utils v0.3.1
gocv.io/x/gocv v0.37.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-logr/logr v0.1.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/google/gofuzz v1.0.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hybridgroup/mjpeg v0.0.0-20140228234708-4680f319790e // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/kisielk/gotool v1.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/panjf2000/ants/v2 v2.4.2 // indirect
github.com/pascaldekloe/goe v0.1.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563 // indirect
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
sigs.k8s.io/yaml v1.2.0 // indirect
)