-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathgo.mod
More file actions
43 lines (38 loc) · 1.56 KB
/
go.mod
File metadata and controls
43 lines (38 loc) · 1.56 KB
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/linuxdeepin/lastore-daemon
go 1.20
// TODO: use origin one
replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.12
require (
github.com/codegangsta/cli v0.0.0-00010101000000-000000000000
github.com/go-ini/ini v1.67.0
github.com/godbus/dbus/v5 v5.1.0
github.com/jouyouyun/hardware v0.1.8
github.com/linuxdeepin/dde-api v0.0.0-20230407015108-8b16b3779328
github.com/linuxdeepin/go-dbus-factory v0.0.0-20250422133602-ca1778dfc5c7
github.com/linuxdeepin/go-lib v0.0.0-20230406092403-b4b4282fc513
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.27.6
github.com/stretchr/testify v1.8.2
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
pault.ag/go/debian v0.12.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gosexy/gettext v0.0.0-20160830220431-74466a0a0c4a // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/linuxdeepin/go-gir v0.0.0-20230331033513-a8d7a9e89f9b // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require gopkg.in/yaml.v2 v2.4.0