-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
31 lines (29 loc) · 1020 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
26
27
28
29
30
31
module github.com/pfnet-research/pftaskqueue
go 1.16
require (
github.com/MakeNowJust/heredoc/v2 v2.0.1
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cenkalti/backoff/v4 v4.0.0
github.com/creasty/defaults v1.3.0
github.com/dustin/go-humanize v1.0.0
github.com/go-playground/validator/v10 v10.2.0
github.com/go-redis/redis/v7 v7.0.0-beta.5
github.com/google/uuid v1.1.1
github.com/hashicorp/go-multierror v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/octago/sflags v0.2.0
github.com/olekukonko/tablewriter v0.0.4
github.com/onsi/ginkgo v1.10.1
github.com/onsi/gomega v1.9.0
github.com/ory/dockertest v3.3.5+incompatible
github.com/ory/dockertest/v3 v3.5.4
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.17.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.3.2
github.com/urfave/cli v1.22.2 // indirect
github.com/urfave/cli/v2 v2.1.1
golang.org/x/sync v0.0.0-20190423024810-112230192c58
gopkg.in/yaml.v2 v2.2.7
)