-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathgo.mod
26 lines (23 loc) · 801 Bytes
/
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
module github.com/datastax/cql-proxy
go 1.18
require (
github.com/alecthomas/kong v0.2.17
github.com/datastax/astra-client-go/v2 v2.2.54
github.com/datastax/go-cassandra-native-protocol v0.0.0-20220706104457-5e8aad05cf90
github.com/hashicorp/golang-lru v0.5.4
github.com/stretchr/testify v1.8.1
go.uber.org/atomic v1.8.0
go.uber.org/zap v1.17.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/deepmap/oapi-codegen v1.12.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)