-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 716 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 716 Bytes
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
module go.bbkane.com/warg
go 1.25.0
retract v0.40.0 // should have been 0.0.40
require (
github.com/goccy/go-yaml v1.19.2
github.com/mattn/go-isatty v0.0.22
github.com/mattn/go-shellwords v1.0.13
github.com/reeflective/readline v1.1.4
github.com/stretchr/testify v1.11.1
github.com/xhit/go-str2duration/v2 v2.1.0
go.bbkane.com/gocolor v0.0.7
golang.org/x/term v0.42.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
golang.org/x/sys v0.43.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)