ed3d0be2b7
I copied most of the code from the `statediff` service from within geth. The idea is that I can create formal DB packages, that can be utilized in other projects down the road.
43 lines
1.6 KiB
Modula-2
43 lines
1.6 KiB
Modula-2
module github.com/vulcanize/ipld-ethcl-indexer
|
|
|
|
go 1.18
|
|
|
|
require github.com/sirupsen/logrus v1.8.1
|
|
|
|
require (
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.11.0 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.10.0 // indirect
|
|
github.com/jackc/puddle v1.2.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/georgysavva/scany v0.3.0
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jackc/pgx/v4 v4.15.0
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
|
|
github.com/spf13/afero v1.8.2 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/cobra v1.4.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.11.0 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/ini.v1 v1.66.4 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|