forked from onflow/flow-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
24 lines (21 loc) · 776 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
module github.com/onflow/flow-go/crypto
go 1.19
require (
github.com/btcsuite/btcd/btcec/v2 v2.2.1
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.8.0
github.com/supranational/blst v0.3.10
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
gonum.org/v1/gonum v0.6.1
pgregory.net/rapid v0.4.7
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)