-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathgo.mod
23 lines (20 loc) · 746 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
module github.com/ingonyama-zk/icicle/v3
// NOTE - Using the Hash package requires go 1.22
// NOTE - Using the Poseidon package requires go 1.22 as it relies on the Hash package
go 1.20
require (
github.com/consensys/gnark-crypto v0.12.1
github.com/stretchr/testify v1.8.2
)
require (
github.com/bits-and-blooms/bitset v1.7.0 // indirect
github.com/consensys/bavard v0.1.13 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/text v0.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.12.0 // indirect
golang.org/x/sys v0.9.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)