forked from opencost/opencost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
56 lines (53 loc) · 2.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module github.com/kubecost/cost-model
replace github.com/golang/lint => golang.org/x/lint v0.0.0-20180702182130-06c8688daad7
require (
cloud.google.com/go v0.81.0
cloud.google.com/go/bigquery v1.8.0
github.com/Azure/azure-sdk-for-go v61.6.0+incompatible
github.com/Azure/go-autorest/autorest v0.11.17
github.com/Azure/go-autorest/autorest/azure/auth v0.5.6
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/aws/aws-sdk-go v1.28.9
github.com/aws/aws-sdk-go-v2 v1.13.0
github.com/aws/aws-sdk-go-v2/config v1.13.1
github.com/aws/aws-sdk-go-v2/credentials v1.8.0
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.9.1
github.com/aws/aws-sdk-go-v2/service/athena v1.12.0
github.com/aws/aws-sdk-go-v2/service/ec2 v1.29.0
github.com/aws/aws-sdk-go-v2/service/s3 v1.24.1
github.com/aws/aws-sdk-go-v2/service/sts v1.14.0
github.com/davecgh/go-spew v1.1.1
github.com/getsentry/sentry-go v0.6.1
github.com/goccy/go-json v0.9.4
github.com/gofrs/uuid v4.2.0+incompatible // indirect
github.com/google/uuid v1.3.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/jszwec/csvutil v1.2.1
github.com/julienschmidt/httprouter v1.3.0
github.com/lib/pq v1.2.0
github.com/microcosm-cc/bluemonday v1.0.16
github.com/minio/minio-go/v7 v7.0.15
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.0.0
github.com/prometheus/client_model v0.2.0
github.com/rs/cors v1.7.0
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
go.etcd.io/bbolt v1.3.5
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
google.golang.org/api v0.44.0
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.20.4
k8s.io/apimachinery v0.20.4
k8s.io/client-go v0.20.4
k8s.io/klog v0.4.0
sigs.k8s.io/yaml v1.2.0
)
go 1.16