2021-06-22 10:07:32 +00:00
|
|
|
module github.com/ledgerwatch/erigon-lib
|
|
|
|
|
2022-04-22 03:56:29 +00:00
|
|
|
go 1.18
|
2021-06-22 10:07:32 +00:00
|
|
|
|
2021-06-24 16:35:12 +00:00
|
|
|
require (
|
2022-06-19 05:35:29 +00:00
|
|
|
github.com/RoaringBitmap/roaring v1.2.1
|
2021-11-04 06:25:23 +00:00
|
|
|
github.com/VictoriaMetrics/metrics v1.18.1
|
2021-07-28 03:36:06 +00:00
|
|
|
github.com/c2h5oh/datasize v0.0.0-20200825124411-48ed595a09d2
|
2022-02-18 03:11:29 +00:00
|
|
|
github.com/flanglet/kanzi-go v1.9.1-0.20211212184056-72dda96261ee
|
2021-09-15 13:15:32 +00:00
|
|
|
github.com/go-stack/stack v1.8.1
|
2022-02-18 02:24:30 +00:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2022-07-07 05:07:43 +00:00
|
|
|
github.com/google/btree v1.1.2
|
2021-09-02 05:25:34 +00:00
|
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
2021-08-07 04:39:38 +00:00
|
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
|
2021-06-24 16:35:12 +00:00
|
|
|
github.com/holiman/uint256 v1.2.0
|
2022-02-24 08:14:37 +00:00
|
|
|
github.com/ledgerwatch/log/v3 v3.4.1
|
2021-11-04 08:35:55 +00:00
|
|
|
github.com/ledgerwatch/secp256k1 v1.0.0
|
2022-04-07 04:29:32 +00:00
|
|
|
github.com/matryer/moq v0.2.7
|
2022-05-30 02:17:47 +00:00
|
|
|
github.com/quasilyte/go-ruleguard/dsl v0.3.21
|
2021-09-15 06:11:34 +00:00
|
|
|
github.com/spaolacci/murmur3 v1.1.0
|
2022-03-16 04:30:33 +00:00
|
|
|
github.com/stretchr/testify v1.7.1
|
2022-06-14 10:42:14 +00:00
|
|
|
github.com/torquem-ch/mdbx-go v0.24.3-0.20220614090901-342411560dde
|
2021-08-03 08:42:26 +00:00
|
|
|
go.uber.org/atomic v1.9.0
|
2022-04-22 03:56:29 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
|
2022-05-10 03:14:02 +00:00
|
|
|
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
|
2022-04-22 03:56:29 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
|
2022-05-16 07:23:43 +00:00
|
|
|
google.golang.org/grpc v1.46.2
|
2022-04-07 04:29:32 +00:00
|
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0
|
|
|
|
google.golang.org/protobuf v1.28.0
|
2021-06-24 16:35:12 +00:00
|
|
|
)
|
2022-04-22 03:56:29 +00:00
|
|
|
|
|
|
|
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
|
2022-04-28 02:08:26 +00:00
|
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
2022-07-13 12:37:45 +00:00
|
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
|
2022-04-22 03:56:29 +00:00
|
|
|
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
|
|
|
|
)
|