-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
36 lines (33 loc) · 1.67 KB
/
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
29
30
31
32
33
34
35
36
module github.com/samsarahq/taskrunner
go 1.17
require (
github.com/fatih/color v1.7.1-0.20180516100307-2d684516a886
github.com/marcusolsson/tui-go v0.3.1-0.20180616142530-cd94d703fac1
github.com/mattn/go-zglob v0.0.1
github.com/samsarahq/go v0.0.0-20191220233105-8077c9fbaed5
github.com/stretchr/testify v1.2.3-0.20181014000028-04af85275a5c
go.uber.org/multierr v1.1.1-0.20180122172545-ddea229ff1df
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
mvdan.cc/sh v2.5.1-0.20180917103936-65d8e2a4b156+incompatible
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdamore/encoding v0.0.0-20151215212835-b23993cbb635 // indirect
github.com/gdamore/tcell v1.1.1-0.20181029231221-017915a4d77d // indirect
github.com/google/go-cmp v0.4.1 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
github.com/lucasb-eyer/go-colorful v0.0.0-20181028223441-12d3b2882a08 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.4-0.20181117163326-c88d7e5f2e24 // indirect
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
go.uber.org/atomic v1.3.3-0.20181018215023-8dc6146f7569 // indirect
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
golang.org/x/text v0.3.1-0.20181030141323-6f44c5a2ea40 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
)