-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (28 loc) · 963 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
30
31
32
module github.com/gnoswap-labs/vwap
go 1.22.2
require (
github.com/go-sql-driver/mysql v1.8.1
github.com/stretchr/testify v1.9.0
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.10
)
require (
github.com/alecthomas/colour v0.1.0 // indirect
github.com/alecthomas/repr v0.0.0-20210801044451-80ca428c5142 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/alecthomas/assert v1.0.0
github.com/bxcodec/faker v2.0.1+incompatible
github.com/bxcodec/faker/v3 v3.8.1
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/mysql v1.5.6
)