forked from viant/sqlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
60 lines (57 loc) · 2.61 KB
/
go.mod
File metadata and controls
60 lines (57 loc) · 2.61 KB
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
57
58
59
60
module github.com/viant/sqlx
go 1.17
require (
github.com/aerospike/aerospike-client-go v4.5.2+incompatible
github.com/francoispqt/gojay v1.2.13
github.com/go-sql-driver/mysql v1.6.0
github.com/google/uuid v1.3.0
github.com/lib/pq v1.10.6
github.com/mattn/go-sqlite3 v1.14.13
github.com/pkg/errors v0.9.1
github.com/segmentio/parquet-go v0.0.0-20220902005228-5bd5f6114638
github.com/stretchr/testify v1.8.0
github.com/vertica/vertica-sql-go v1.2.2
github.com/viant/afs v1.16.1-0.20220601210902-dc23d64dda15
github.com/viant/assertly v0.9.0
github.com/viant/bigquery v0.2.1-0.20220914154037-307a294f2482
github.com/viant/parsly v0.0.0-20220907184615-a27c125714a1
github.com/viant/toolbox v0.34.5
github.com/viant/xunsafe v0.8.1-0.20220609224231-1d3e1fcf7bb6
google.golang.org/api v0.84.0
)
require (
cloud.google.com/go/compute v1.7.0 // indirect
github.com/andybalholm/brotli v1.0.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisenkom/go-mssqldb v0.12.2 // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa // indirect
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
github.com/klauspost/compress v1.15.5 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.20.0 // indirect
github.com/pierrec/lz4/v4 v4.1.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/segmentio/encoding v0.3.5 // indirect
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb // indirect
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)