mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 14:47:16 +00:00
37d9944da9
* Domain * First functions * change year * More on domain * More to test * More on test * More on domains * buildFiles * More on domains * Collation test * Fix collate * Add test for decompressors * Restructure history tables * Split history into 2 tables * Fix lint * Check index files in the test * Close files * Add file scanning * Fix lint * Fix lint * Add readFromFiles * Add ef history idx file * Start cleanup * More to cleanup, test for ef history * More test * Add prune to test * Test for prune and fix * Start history access * History test * Test for LastDup * Fix one lint * Workaround * History tests * Debug * Fix * Fix in history * Fix lint Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> Co-authored-by: Alex Sharp <alexsharp@alexs-macbook-pro.home> Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local> Co-authored-by: Alex Sharp <alexsharp@alexs-mbp.lan>
51 lines
2.0 KiB
Modula-2
51 lines
2.0 KiB
Modula-2
module github.com/ledgerwatch/erigon-lib
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/RoaringBitmap/roaring v0.9.4
|
|
github.com/VictoriaMetrics/metrics v1.18.1
|
|
github.com/c2h5oh/datasize v0.0.0-20200825124411-48ed595a09d2
|
|
github.com/flanglet/kanzi-go v1.9.1-0.20211212184056-72dda96261ee
|
|
github.com/go-stack/stack v1.8.1
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/google/btree v1.0.1
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
|
|
github.com/holiman/uint256 v1.2.0
|
|
github.com/ledgerwatch/log/v3 v3.4.1
|
|
github.com/ledgerwatch/secp256k1 v1.0.0
|
|
github.com/matryer/moq v0.2.7
|
|
github.com/quasilyte/go-ruleguard/dsl v0.3.19
|
|
github.com/spaolacci/murmur3 v1.1.0
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/torquem-ch/mdbx-go v0.24.2
|
|
github.com/ugorji/go/codec v1.1.13
|
|
go.uber.org/atomic v1.9.0
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
|
|
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
|
|
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
|
|
google.golang.org/grpc v1.46.2
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0
|
|
google.golang.org/protobuf v1.28.0
|
|
)
|
|
|
|
require (
|
|
github.com/bits-and-blooms/bitset v1.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/mattn/go-colorable v0.1.11 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mschoch/smat v0.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/valyala/fastrand v1.1.0 // indirect
|
|
github.com/valyala/histogram v1.2.0 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.10 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|