-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathgo.mod
25 lines (22 loc) · 837 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/screwdriver-cd/launcher
go 1.19
require (
github.com/creack/pty v1.1.11
github.com/google/uuid v1.2.0
github.com/hashicorp/go-retryablehttp v0.6.6
github.com/peterbourgon/mergemap v0.0.0-20130613134717-e21c03b7a721
github.com/stretchr/testify v1.2.2
github.com/urfave/cli v1.22.2
gopkg.in/fatih/color.v1 v1.7.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/sys v0.2.0 // indirect
)