forked from neilotoole/sq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
54 lines (51 loc) · 2.14 KB
/
go.mod
File metadata and controls
54 lines (51 loc) · 2.14 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
module github.com/neilotoole/sq
go 1.16
// Using forked cobra for now because v1.1.3 does not pass Context
// to valid args completion funcs. There's an open PR for
// this: https://github.com/spf13/cobra/pull/1265
replace github.com/spf13/cobra v1.1.3 => github.com/neilotoole/cobra v1.1.4-0.20210220092732-c11dbd416310
require (
github.com/antlr/antlr4 v0.0.0-20191011202612-ad2bd05285ca
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
github.com/c2h5oh/datasize v0.0.0-20170519143321-54516c931ae9
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
github.com/cpuguy83/go-md2man v1.0.10 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec
github.com/djherbis/fscache v0.10.1
github.com/emirpasic/gods v1.9.0
github.com/fatih/color v1.9.0
github.com/go-sql-driver/mysql v1.5.0
github.com/google/uuid v1.1.1
github.com/h2non/filetype v1.1.0
github.com/jackc/pgconn v1.5.0
github.com/jackc/pgx/v4 v4.6.0
github.com/kr/text v0.2.0 // indirect
github.com/magefile/mage v1.9.0
github.com/mattn/go-colorable v0.1.4
github.com/mattn/go-isatty v0.0.12
github.com/mattn/go-runewidth v0.0.4
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/mitchellh/go-homedir v1.1.0
github.com/neilotoole/errgroup v0.1.5
github.com/neilotoole/lg v0.3.0
github.com/pkg/errors v0.9.1
github.com/ryboe/q v1.0.12
github.com/satori/go.uuid v1.2.0
github.com/segmentio/encoding v0.1.14
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1
github.com/tealeg/xlsx/v2 v2.0.1
github.com/testcontainers/testcontainers-go v0.5.0
github.com/xo/dburl v0.0.0-20200124232849-e9ec94f52bc3
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
go.uber.org/atomic v1.5.0
go.uber.org/multierr v1.4.0
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
gopkg.in/djherbis/atime.v1 v1.0.0 // indirect
gopkg.in/djherbis/stream.v1 v1.3.1 // indirect
gopkg.in/yaml.v2 v2.4.0
)