forked from bnb-chain/zkbnb-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (23 loc) · 900 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
module github.com/bnb-chain/zkbnb-crypto
go 1.17
require (
github.com/consensys/gnark v0.7.0
github.com/consensys/gnark-crypto v0.7.0
github.com/ethereum/go-ethereum v1.10.17
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.1
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064
)
require (
github.com/btcsuite/btcd/btcec/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/fxamacker/cbor/v2 v2.2.0 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/rs/zerolog v1.26.1 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)