-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
25 lines (22 loc) · 780 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/dirk/quickhook
go 1.21
require (
github.com/alecthomas/kong v0.9.0
github.com/creack/pty v1.1.21
github.com/fatih/color v1.16.0
github.com/samber/lo v1.39.0
github.com/stretchr/testify v1.9.0
)
require (
github.com/alecthomas/assert/v2 v2.7.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
golang.org/x/sys v0.18.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)