-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (28 loc) · 1.13 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
module github.com/lightec-xyz/common
go 1.22.1
require (
github.com/consensys/gnark v0.11.0
github.com/consensys/gnark-crypto v0.14.1-0.20240909142611-e6b99e74cec1
github.com/rs/zerolog v1.33.0
)
require (
github.com/bits-and-blooms/bitset v1.14.2 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/consensys/bavard v0.1.15 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/ronanh/intcomp v1.1.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)
replace (
github.com/consensys/gnark => github.com/lightec-xyz/gnark v0.0.0-20241024072556-66f3c7ecf3b9
github.com/consensys/gnark-crypto => github.com/lightec-xyz/gnark-crypto v0.0.0-20240927064131-c1ad5db6d61b
)