-
Notifications
You must be signed in to change notification settings - Fork 24
/
go.mod
54 lines (51 loc) · 2.34 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
module github.com/squareup/pranadb
go 1.16
replace github.com/lni/dragonboat/v3 => ./dragonboat
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/alecthomas/kong v0.2.17
github.com/alecthomas/kong-hcl/v2 v2.0.0-20210826214724-5e9bf8bff126
github.com/alecthomas/participle/v2 v2.0.0-alpha6
github.com/alecthomas/repr v0.0.0-20210611225437-1a2716eca9d6
github.com/bserdar/golang-lru v0.0.0-20190506053902-559c5d14b56e
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/chzyer/test v0.0.0-20210722231415-061457976a23 // indirect
github.com/cockroachdb/pebble v0.0.0-20220726144858-a78491c0086f // Corresponds to branch crl-release-22.1
github.com/confluentinc/confluent-kafka-go v1.7.0
github.com/containerd/continuity v0.1.0 // indirect
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
github.com/cznic/sortutil v0.0.0-20181122101858-f5f958428db8
github.com/docker/go-connections v0.4.0 // indirect
github.com/golang/protobuf v1.5.2
github.com/google/btree v1.0.0
github.com/google/uuid v1.3.0
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect
github.com/hashicorp/golang-lru v0.5.4
github.com/lib/pq v1.10.4 // indirect
github.com/lni/dragonboat/v3 v3.3.5
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/opencontainers/runc v1.1.2 // indirect
github.com/ory/dockertest v3.3.5+incompatible
github.com/pingcap/errors v0.11.5-0.20201126102027-b0a155152ca3 // indirect
github.com/pingcap/log v0.0.0-20200511115504-543df19646ad
github.com/pingcap/parser v0.0.0-20210618053735-57843e8185c4
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/segmentio/kafka-go v0.4.29
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0
github.com/twmb/murmur3 v1.1.6
go.uber.org/atomic v1.7.0
go.uber.org/ratelimit v0.2.0
go.uber.org/zap v1.15.0
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/text v0.3.7
golang.org/x/tools v0.1.0
google.golang.org/grpc v1.32.0
google.golang.org/protobuf v1.27.1
gopkg.in/DataDog/dd-trace-go.v1 v1.40.1
gotest.tools v2.2.0+incompatible // indirect
)