-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
25 lines (22 loc) · 806 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
module github.com/dcb9/binancepay
go 1.18
require (
github.com/go-playground/validator/v10 v10.11.0
github.com/hashicorp/go-uuid v1.0.3
github.com/shopspring/decimal v1.3.1
github.com/stretchr/testify v1.7.5
go.uber.org/zap v1.21.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)