-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (23 loc) · 810 Bytes
/
go.mod
File metadata and controls
26 lines (23 loc) · 810 Bytes
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
module github.com/mendersoftware/mender-snapshot
go 1.17
require (
github.com/creack/pty v1.1.24
github.com/mendersoftware/progressbar v0.0.4
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
github.com/ungerik/go-sysfs v0.0.0-20210209091351-68e6f4d6bff9
github.com/urfave/cli/v2 v2.4.1
golang.org/x/sys v0.30.0
golang.org/x/term v0.29.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)