-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
29 lines (26 loc) · 882 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
27
28
29
module nav
go 1.18
require (
github.com/go-sql-driver/mysql v1.7.1
github.com/goccy/go-graphviz v0.1.1
github.com/lib/pq v1.10.9
github.com/mattn/go-sqlite3 v1.14.16
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.27.6
github.com/spf13/pflag v1.0.5
)
require (
github.com/DATA-DOG/go-sqlmock v1.5.0 // indirect
github.com/fogleman/gg v1.3.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/image v0.6.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)