cosmos-sdk/indexer/postgres/go.mod
Julián Toledano 57b4d3003b
fix(client/v2/autocli): add CoinDec flag (#22817)
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2024-12-10 20:20:30 +00:00

14 lines
478 B
Modula-2

module cosmossdk.io/indexer/postgres
// NOTE: we are staying on an earlier version of golang to avoid problems building
// with older codebases.
go 1.12
// NOTE: cosmossdk.io/schema should be the only dependency here
// so there are no problems building this with any version of the SDK.
// This module should only use the golang standard library (database/sql)
// and cosmossdk.io/indexer/base.
require cosmossdk.io/schema v0.4.0
replace cosmossdk.io/schema => ../../schema