-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (29 loc) · 1.14 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
module github.com/kgoralski/go-crud-template
go 1.14
require (
github.com/BurntSushi/toml v0.3.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-chi/chi v3.3.3+incompatible
github.com/go-sql-driver/mysql v1.4.0
github.com/golang/mock v1.2.0
github.com/gorilla/mux v1.8.1
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jmoiron/sqlx v0.0.0-20180614180643-0dae4fefe7c0
github.com/lib/pq v1.0.0 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mattn/go-sqlite3 v1.9.0 // indirect
github.com/mitchellh/mapstructure v1.0.0 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/pkg/errors v0.8.0
github.com/sirupsen/logrus v1.1.1
github.com/spf13/afero v1.1.1 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20180814060501-14d3d4c51834 // indirect
github.com/spf13/pflag v1.0.2 // indirect
github.com/spf13/viper v1.1.0
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.2.2
golang.org/x/text v0.3.0 // indirect
google.golang.org/appengine v1.1.0 // indirect
gopkg.in/yaml.v2 v2.2.1 // indirect
)