update go.mod
This commit is contained in:
parent
f16ce722ec
commit
188193dcac
|
@ -7,6 +7,7 @@
|
||||||
# Folders
|
# Folders
|
||||||
_obj
|
_obj
|
||||||
_test
|
_test
|
||||||
|
vendor
|
||||||
|
|
||||||
# Architecture specific extensions/prefixes
|
# Architecture specific extensions/prefixes
|
||||||
*.[568vq]
|
*.[568vq]
|
||||||
|
|
25
go.mod
25
go.mod
|
@ -1,6 +1,25 @@
|
||||||
module "github.com/go-xorm/xorm"
|
module github.com/go-xorm/xorm
|
||||||
|
|
||||||
require (
|
require (
|
||||||
"github.com/go-xorm/builder" v0.0.0-20180322150003-a9b7ffcca3f0
|
cloud.google.com/go v0.25.0
|
||||||
"github.com/go-xorm/core" v0.0.0-20180322150003-0177c08cee88
|
github.com/cockroachdb/apd v1.0.0
|
||||||
|
github.com/denisenkom/go-mssqldb v0.0.0-20180707235734-242fa5aa1b45
|
||||||
|
github.com/go-sql-driver/mysql v1.4.0
|
||||||
|
github.com/go-xorm/builder v0.0.0-20180322150003-a9b7ffcca3f0
|
||||||
|
github.com/go-xorm/core v0.0.0-20180322150003-0177c08cee88
|
||||||
|
github.com/google/go-cmp v0.2.0
|
||||||
|
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733
|
||||||
|
github.com/jackc/pgx v0.0.0-20180724145307-93ee40e691de
|
||||||
|
github.com/kr/pretty v0.1.0
|
||||||
|
github.com/lib/pq v0.0.0-20180523175426-90697d60dd84
|
||||||
|
github.com/mattn/go-sqlite3 v1.9.0
|
||||||
|
github.com/pkg/errors v0.8.0
|
||||||
|
github.com/satori/go.uuid v1.2.0
|
||||||
|
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
|
||||||
|
github.com/stretchr/testify v1.2.2
|
||||||
|
github.com/ziutek/mymysql v1.5.4
|
||||||
|
golang.org/x/crypto v0.0.0-20180723164146-c126467f60eb
|
||||||
|
google.golang.org/appengine v1.1.0
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
|
||||||
|
gopkg.in/stretchr/testify.v1 v1.2.2
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue