...
1module github.com/theupdateframework/go-tuf
2
3go 1.20
4
5require (
6 github.com/dustin/go-humanize v1.0.1
7 github.com/flynn/go-docopt v0.0.0-20140912013429-f6dd2ebbb31e
8 github.com/google/gofuzz v1.2.0
9 github.com/secure-systems-lab/go-securesystemslib v0.7.0
10 github.com/stretchr/testify v1.8.4
11 github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
12 golang.org/x/crypto v0.16.0
13 golang.org/x/term v0.15.0
14 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
15)
16
17require (
18 github.com/davecgh/go-spew v1.1.1 // indirect
19 github.com/golang/snappy v0.0.4 // indirect
20 github.com/kr/pretty v0.2.1 // indirect
21 github.com/kr/text v0.1.0 // indirect
22 github.com/pmezard/go-difflib v1.0.0 // indirect
23 golang.org/x/sys v0.15.0 // indirect
24 gopkg.in/yaml.v3 v3.0.1 // indirect
25)
View as plain text