This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
forked from streamingfast/kvdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
41 lines (39 loc) · 1.73 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
module github.com/dfuse-io/kvdb
require (
cloud.google.com/go/bigtable v1.2.0
github.com/OneOfOne/xxhash v1.2.5 // indirect
github.com/Sytten/logrus-zap-hook v0.1.0
github.com/dfuse-io/logging v0.0.0-20201125153217-f29c382faa42
github.com/dgraph-io/badger/v2 v2.0.3
github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c // indirect
github.com/golang/protobuf v1.3.4
github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190717153623-606c73359dba // indirect
github.com/klauspost/compress v1.10.2
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/magiconair/properties v1.8.0
github.com/opentracing/opentracing-go v1.1.0 // indirect
github.com/pingcap/check v0.0.0-20200212061837-5e12011dc712 // indirect
github.com/pingcap/goleveldb v0.0.0-20191226122134-f82aafb29989 // indirect
github.com/pingcap/kvproto v0.0.0-20200403035933-b4034bceab26 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.4.0
github.com/tikv/client-go v0.0.0-20200824032810-95774393107b
go.opencensus.io v0.22.2
go.uber.org/multierr v1.5.0
go.uber.org/zap v1.14.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 // indirect
google.golang.org/api v0.15.0
google.golang.org/grpc v1.26.0
modernc.org/fileutil v1.0.0 // indirect
modernc.org/internal v1.0.0 // indirect
modernc.org/kv v1.0.0
modernc.org/lldb v1.0.0 // indirect
modernc.org/mathutil v1.1.0 // indirect
modernc.org/sortutil v1.1.0 // indirect
modernc.org/zappy v1.0.0 // indirect
)
go 1.14