-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (17 loc) · 577 Bytes
/
go.mod
File metadata and controls
21 lines (17 loc) · 577 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/joshuar/gokbd
go 1.20
require (
github.com/rs/zerolog v1.31.0
github.com/stretchr/testify v1.8.4
)
require kernel.org/pub/linux/libs/security/libcap/psx v1.2.69 // indirect
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
kernel.org/pub/linux/libs/security/libcap/cap v1.2.69
)