-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
33 lines (31 loc) · 1.12 KB
/
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
33
module github.com/bitcoinnanolabs/accept-btco
go 1.18
//test
require (
github.com/bitcoinnanolabs/ed25519 v1.0.0
github.com/cenkalti/log v1.0.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gorilla/websocket v1.4.2
github.com/knadh/koanf v0.12.1
github.com/mitchellh/mapstructure v1.2.2
github.com/rs/cors v1.7.0
github.com/shopspring/decimal v1.2.0
github.com/stretchr/testify v1.6.1
github.com/ulule/limiter/v3 v3.5.0
go.etcd.io/bbolt v1.3.5
golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)