-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
25 lines (22 loc) · 921 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
module github.com/Velocidex/go-magic
go 1.17
require (
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/magefile/mage v1.15.0
github.com/stretchr/testify v1.4.0
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
require (
github.com/alecthomas/colour v0.1.0 // indirect
github.com/alecthomas/repr v0.0.0-20210801044451-80ca428c5142 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
gopkg.in/yaml.v2 v2.2.4 // indirect
)