snippet/go.mod

38 lines
1.4 KiB
Modula-2
Raw Normal View History

2021-09-03 14:23:46 +00:00
module myschools.me/suguo/snippet
2021-09-03 01:41:46 +00:00
go 1.17
require (
2021-09-13 12:52:49 +00:00
github.com/hashicorp/consul/api v1.10.1
google.golang.org/grpc v1.40.0
2021-09-03 01:41:46 +00:00
gorm.io/driver/mysql v1.1.2
2021-09-03 08:44:20 +00:00
gorm.io/driver/sqlite v1.1.4
2021-09-03 01:41:46 +00:00
gorm.io/gorm v1.21.14
gorm.io/plugin/dbresolver v1.1.0
)
require (
2021-09-13 12:52:49 +00:00
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect
github.com/fatih/color v1.9.0 // indirect
2021-09-03 01:41:46 +00:00
github.com/go-sql-driver/mysql v1.6.0 // indirect
2021-09-13 12:52:49 +00:00
github.com/golang/protobuf v1.4.3 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/go-hclog v0.12.0 // indirect
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/hashicorp/serf v0.9.5 // indirect
2021-09-03 01:41:46 +00:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
2021-09-13 12:52:49 +00:00
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
2021-09-03 08:44:20 +00:00
github.com/mattn/go-sqlite3 v1.14.5 // indirect
2021-09-13 12:52:49 +00:00
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
golang.org/x/text v0.3.2 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/protobuf v1.25.0 // indirect
2021-09-03 01:41:46 +00:00
)