-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
33 lines (30 loc) · 1003 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
26
27
28
29
30
31
32
33
module github.com/sboehler/knut
go 1.21
require (
github.com/cheggaaa/pb/v3 v3.1.4
github.com/dimchansky/utfbom v1.1.1
github.com/fatih/color v1.15.0
github.com/google/go-cmp v0.5.9
github.com/natefinch/atomic v1.0.1
github.com/sebdah/goldie/v2 v2.5.3
github.com/shopspring/decimal v1.3.1
github.com/sourcegraph/conc v0.3.0
github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5
go.uber.org/multierr v1.11.0
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63
golang.org/x/sync v0.3.0
golang.org/x/text v0.12.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
golang.org/x/sys v0.11.0 // indirect
)