forked from Altinity/clickhouse-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
46 lines (44 loc) · 1.98 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
module github.com/AlexAkulov/clickhouse-backup
require (
cloud.google.com/go v0.49.0 // indirect
cloud.google.com/go/storage v1.4.0
github.com/ClickHouse/clickhouse-go v1.3.12
github.com/andybalholm/brotli v1.0.0 // indirect
github.com/aws/aws-sdk-go v1.25.48
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/djherbis/buffer v1.1.0 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/frankban/quicktest v1.5.0 // indirect
github.com/go-errors/errors v1.0.1 // indirect
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/jstemmer/go-junit-report v0.9.1 // indirect
github.com/julienschmidt/httprouter v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/klauspost/compress v1.9.4 // indirect
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/mholt/archiver v1.1.3-0.20190812163345-2d1449806793
github.com/pierrec/lz4 v2.3.1-0.20191115212037-9085dacd1e1e+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.5.1
github.com/stretchr/testify v1.4.0
github.com/tencentyun/cos-go-sdk-v5 v0.0.0-20200120023323-87ff3bc489ac
github.com/urfave/cli v1.22.2
go.opencensus.io v0.22.2 // indirect
golang.org/x/exp v0.0.0-20191129062945-2f5052295587 // indirect
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect
golang.org/x/net v0.0.0-20191204025024-5ee1b9f4859a // indirect
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
golang.org/x/tools v0.0.0-20191205012623-e84277c2c008 // indirect
google.golang.org/api v0.14.0
google.golang.org/appengine v1.6.5 // indirect
google.golang.org/genproto v0.0.0-20191203220235-3fa9dbf08042 // indirect
google.golang.org/grpc v1.25.1 // indirect
gopkg.in/cheggaaa/pb.v1 v1.0.28
gopkg.in/djherbis/buffer.v1 v1.1.0
gopkg.in/djherbis/nio.v2 v2.0.3
gopkg.in/yaml.v2 v2.2.7
)
go 1.13