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
|
2022-07-19 06:45:47 +00:00
|
|
|
github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b
|
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-07-19 06:45:47 +00:00
|
|
|
github.com/stretchr/testify v1.8.0
|
2022-07-19 09:53:13 +00:00
|
|
|
github.com/torquem-ch/mdbx-go v0.25.0
|
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-07-19 06:45:47 +00:00
|
|
|
golang.org/x/exp v0.0.0-20220713135740-79cabaa25d75
|
|
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
|
|
|
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
|
|
|
|
google.golang.org/grpc v1.48.0
|
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-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
|
2022-07-19 06:45:47 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-04-22 03:56:29 +00:00
|
|
|
)
|