-
Notifications
You must be signed in to change notification settings - Fork 49
/
go.mod
35 lines (32 loc) · 1.2 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
module github.com/linuxboot/fiano
go 1.21
require (
github.com/dustin/go-humanize v1.0.0
github.com/fatih/camelcase v1.0.0
github.com/hashicorp/go-multierror v1.1.1
github.com/jedib0t/go-pretty/v6 v6.4.6
github.com/jessevdk/go-flags v1.5.0
github.com/klauspost/compress v1.13.6
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
github.com/tjfoc/gmsm v1.4.1
github.com/u-root/u-root v0.9.0
github.com/ulikunitz/xz v0.5.11
github.com/xaionaro-go/bytesextra v0.0.0-20220103144954-846e454ddea9
github.com/xaionaro-go/gosrc v0.0.0-20201124181305-3fdf8476a735
golang.org/x/text v0.6.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/structtag v1.2.0 // indirect
github.com/frankban/quicktest v1.14.5 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/xaionaro-go/unsafetools v0.0.0-20210722164218-75ba48cf7b3c // indirect
golang.org/x/sys v0.4.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)