-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
39 lines (37 loc) · 1.52 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
37
38
39
module github.com/k1LoW/harvest
require (
github.com/Azure/go-autorest/autorest v0.2.0 // indirect
github.com/Songmu/prompter v0.2.0
github.com/antonmedv/expr v1.1.4
github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/google/gofuzz v1.0.0 // indirect
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.2 // indirect
github.com/imdario/mergo v0.3.7 // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/k1LoW/duration v1.1.0
github.com/k1LoW/sshc v0.0.0-20190816012013-f54f6b90bfef
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
github.com/labstack/gommon v0.2.8
github.com/lib/pq v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-sqlite3 v1.10.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.8.1
github.com/spf13/cobra v1.0.1-0.20200719220246-c6fe2d4df810
github.com/stretchr/testify v1.4.0 // indirect
go.uber.org/zap v1.10.0
golang.org/x/crypto v0.17.0
golang.org/x/net v0.17.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/inf.v0 v0.9.0 // indirect
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.0.0-20190313235455-40a48860b5ab
k8s.io/apimachinery v0.0.0-20190313205120-d7deff9243b1
k8s.io/client-go v11.0.0+incompatible
k8s.io/klog v0.3.3 // indirect
k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a // indirect
sigs.k8s.io/yaml v1.1.0 // indirect
)
go 1.13