-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
70 lines (68 loc) · 3.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module github.com/xo/usql
require (
github.com/ClickHouse/clickhouse-go v1.4.3
github.com/Masterminds/semver v1.5.0 // indirect
github.com/MichaelS11/go-cql-driver v0.0.0-20190914174813-cf3b3196aa43
github.com/SAP/go-hdb v0.100.14
github.com/VoltDB/voltdb-client-go v1.0.1
github.com/alecthomas/chroma v0.8.0
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/alexbrainman/odbc v0.0.0-20200426075526-f0492dfa1575
github.com/amsokol/ignite-go-client v0.12.2
github.com/apache/arrow/go/arrow v0.0.0-20200910002612-9921c83dfd3a // indirect
github.com/apache/calcite-avatica-go/v4 v4.0.0
github.com/couchbase/go-couchbase v0.0.0-20200903133030-4bec0f660f90 // indirect
github.com/couchbase/go_n1ql v0.0.0-20160215142504-6cf4e348b127
github.com/couchbase/gomemcached v0.1.0 // indirect
github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20200831201914-36b6ff1bbc10
github.com/dlclark/regexp2 v1.2.1 // indirect
github.com/edsrzf/mmap-go v1.0.0 // indirect
github.com/frankban/quicktest v1.4.1 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-sql-driver/mysql v1.5.0
github.com/gocql/gocql v0.0.0-20200815110948-5378c8f664e9
github.com/godror/godror v0.20.0
github.com/gohxs/readline v0.0.0-20171011095936-a780388e6e7c
github.com/golang/protobuf v1.4.2 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/flatbuffers v1.12.0 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/jackc/pgconn v1.6.4
github.com/jackc/pgproto3/v2 v2.0.4 // indirect
github.com/jackc/pgx/v4 v4.8.1
github.com/lib/pq v1.8.0
github.com/mattn/go-adodb v0.0.1
github.com/mattn/go-isatty v0.0.12
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/nakagami/firebirdsql v0.0.0-20200724081317-0cfab755829a
github.com/pierrec/lz4 v2.2.6+incompatible // indirect
github.com/prestodb/presto-go-client v0.0.0-20200302111820-5ec09431be26
github.com/shopspring/decimal v1.2.0 // indirect
github.com/snowflakedb/gosnowflake v1.3.8
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/thda/tds v0.1.7
github.com/vertica/vertica-sql-go v1.1.0
github.com/xinsnake/go-http-digest-auth-client v0.6.0 // indirect
github.com/xo/dburl v0.0.0-20200910011426-652e0d5720a3
github.com/xo/tblfmt v0.0.0-20200425011819-c88dde44428d
github.com/xo/terminfo v0.0.0-20200218205459-454e5b68f9e8
github.com/xo/xoutil v0.0.0-20171112033149-46189f4026a5
github.com/zaf/temp v0.0.0-20170209143821-94e385923345
github.com/ziutek/mymysql v1.5.4
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/jcmturner/gokrb5.v7 v7.5.0 // indirect
modernc.org/golex v1.0.1 // indirect
modernc.org/ql v1.1.0
modernc.org/sortutil v1.1.0 // indirect
modernc.org/sqlite v1.6.2
modernc.org/strutil v1.1.0 // indirect
)
go 1.13