forked from xyield/xrpl-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (23 loc) · 799 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
module github.com/CreatureDev/xrpl-go
go 1.19
require (
github.com/gorilla/websocket v1.5.0
github.com/mitchellh/mapstructure v1.5.0
github.com/stretchr/testify v1.7.5
github.com/ugorji/go/codec v1.2.11
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a
)
require (
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/stretchr/objx v0.4.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/json-iterator/go v1.1.12
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)