-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
28 lines (24 loc) · 885 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
module github.com/aleksa11010/HarnessInlineToRemote
go 1.20
require github.com/go-resty/resty/v2 v2.7.0
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.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.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/sys v0.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/antonfisher/nested-logrus-formatter v1.3.1
github.com/cheggaaa/pb/v3 v3.1.4
github.com/google/martian v2.1.0+incompatible
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
gopkg.in/yaml.v2 v2.4.0
)