62 lines
2.6 KiB
Modula-2
62 lines
2.6 KiB
Modula-2
module github.com/cerc-io/ipld-eth-statedb
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/VictoriaMetrics/fastcache v1.6.0
|
|
github.com/ethereum/go-ethereum v1.10.26
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
|
|
github.com/ipfs/go-cid v0.2.0
|
|
github.com/jackc/pgx/v4 v4.18.1
|
|
github.com/multiformats/go-multihash v0.1.0
|
|
github.com/stretchr/testify v1.8.1
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/holiman/uint256 v1.2.0 // indirect
|
|
github.com/ipfs/go-block-format v0.0.3 // indirect
|
|
github.com/ipfs/go-ipfs-util v0.0.2 // indirect
|
|
github.com/ipfs/go-ipld-format v0.4.0 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.14.0 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/pgtype v1.14.0 // indirect
|
|
github.com/jackc/puddle v1.3.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
|
|
github.com/minio/sha256-simd v1.0.0 // indirect
|
|
github.com/mr-tron/base58 v1.2.0 // indirect
|
|
github.com/multiformats/go-base32 v0.0.3 // indirect
|
|
github.com/multiformats/go-base36 v0.1.0 // indirect
|
|
github.com/multiformats/go-multibase v0.0.3 // indirect
|
|
github.com/multiformats/go-varint v0.0.6 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/tsdb v0.10.0 // indirect
|
|
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.5 // indirect
|
|
github.com/tklauser/numcpus v0.2.2 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.2 // indirect
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
lukechampine.com/blake3 v1.1.6 // indirect
|
|
)
|
|
|
|
replace github.com/ethereum/go-ethereum v1.10.26 => github.com/cerc-io/go-ethereum v1.10.26-statediff-4.2.2-alpha
|