2025-07-25 19:04:58 -05:00
|
|
|
module github.com/luxfi/crypto
|
|
|
|
|
|
|
|
|
|
go 1.24.5
|
|
|
|
|
|
2025-08-15 16:51:58 -05:00
|
|
|
toolchain go1.24.6
|
|
|
|
|
|
2025-07-25 19:04:58 -05:00
|
|
|
require (
|
2025-07-30 04:11:41 +00:00
|
|
|
github.com/cloudflare/circl v1.6.1
|
2025-08-07 05:38:07 +00:00
|
|
|
github.com/consensys/gnark-crypto v0.18.0
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/crate-crypto/go-eth-kzg v1.3.0
|
2025-07-25 19:04:58 -05:00
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
|
|
|
|
|
github.com/ethereum/c-kzg-4844/v2 v2.1.1
|
|
|
|
|
github.com/google/gofuzz v1.2.0
|
|
|
|
|
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267
|
2025-08-07 05:38:07 +00:00
|
|
|
github.com/leanovate/gopter v0.2.11
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/luxfi/geth v1.16.34
|
2025-08-02 22:04:42 -05:00
|
|
|
github.com/luxfi/ids v1.0.1
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/luxfi/lattice/v6 v6.1.1
|
|
|
|
|
github.com/luxfi/corona v0.1.0
|
2025-07-25 20:12:57 -05:00
|
|
|
github.com/mr-tron/base58 v1.2.0
|
2025-07-25 19:04:58 -05:00
|
|
|
github.com/stretchr/testify v1.10.0
|
2025-08-07 05:38:07 +00:00
|
|
|
github.com/supranational/blst v0.3.15
|
2025-07-25 19:04:58 -05:00
|
|
|
golang.org/x/crypto v0.40.0
|
2025-08-06 05:09:26 +00:00
|
|
|
golang.org/x/sync v0.16.0
|
2025-07-25 19:04:58 -05:00
|
|
|
golang.org/x/sys v0.34.0
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/ALTree/bigfloat v0.2.0 // indirect
|
2025-07-25 19:04:58 -05:00
|
|
|
github.com/bits-and-blooms/bitset v1.20.0 // indirect
|
2025-07-25 22:19:01 -05:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
|
|
|
github.com/holiman/uint256 v1.3.2 // indirect
|
|
|
|
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
|
|
|
github.com/montanaflynn/stats v0.7.1 // indirect
|
2025-07-25 22:19:01 -05:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2025-08-15 16:51:58 -05:00
|
|
|
github.com/zeebo/blake3 v0.2.4 // indirect
|
|
|
|
|
golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 // indirect
|
2025-07-25 19:04:58 -05:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
|
)
|
2025-08-15 16:51:58 -05:00
|
|
|
|
|
|
|
|
replace (
|
|
|
|
|
github.com/luxfi/crypto/lamport => ./lamport
|
|
|
|
|
github.com/luxfi/crypto/mldsa => ./mldsa
|
|
|
|
|
github.com/luxfi/crypto/mlkem => ./mlkem
|
|
|
|
|
github.com/luxfi/crypto/precompile => ./precompile
|
|
|
|
|
github.com/luxfi/crypto/slhdsa => ./slhdsa
|
|
|
|
|
github.com/luxfi/corona => ../corona
|
|
|
|
|
)
|