-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
56 lines (53 loc) · 2.09 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
module github.com/cgi-fr/lino
go 1.20
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/adrienaury/zeromdc v0.1.1
github.com/awalterschulze/gographviz v2.0.3+incompatible
github.com/cgi-fr/jsonline v0.5.0
github.com/cgi-fr/rimo v0.4.0
github.com/coder/websocket v1.8.12
github.com/docker/docker-credential-helpers v0.8.2
github.com/go-sql-driver/mysql v1.8.1
github.com/gorilla/mux v1.8.1
github.com/hashicorp/go-multierror v1.1.1
github.com/ibmdb/go_ibm_db v0.5.2
github.com/jmoiron/sqlx v1.4.0
github.com/lib/pq v1.10.9
github.com/mattn/go-isatty v0.0.20
github.com/microsoft/go-mssqldb v1.8.0
github.com/mitchellh/go-homedir v1.1.0
github.com/rs/zerolog v1.33.0
github.com/schollz/progressbar/v3 v3.18.0
github.com/sijms/go-ora/v2 v2.8.23
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
github.com/xo/dburl v0.23.2
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
golang.org/x/term v0.28.0
gopkg.in/yaml.v3 v3.0.1
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/iancoleman/orderedmap v0.3.0 // indirect
github.com/ibmruntimes/go-recordio/v2 v2.0.0-20240416213906-ae0ad556db70 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/invopop/jsonschema v0.7.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)