Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
54 lines
1.7 KiB
Text
54 lines
1.7 KiB
Text
module <%= ModulePath %>
|
|
|
|
go 1.24.1
|
|
|
|
replace (
|
|
// fix upstream GHSA-h395-qcrw-5vmq vulnerability.
|
|
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
|
|
// replace broken goleveldb
|
|
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
|
|
// replace broken vanity url
|
|
nhooyr.io/websocket => github.com/coder/websocket v1.8.7
|
|
// support for go 1.26 (remove when cosmossdk.io/log is updated)
|
|
github.com/bytedance/sonic => github.com/bytedance/sonic v1.15.0
|
|
)
|
|
|
|
require (
|
|
cosmossdk.io/api v0.9.2
|
|
cosmossdk.io/client/v2 v2.0.0-beta.11
|
|
cosmossdk.io/collections v1.3.1
|
|
cosmossdk.io/core v0.11.3
|
|
cosmossdk.io/depinject v1.2.1
|
|
cosmossdk.io/errors v1.0.2
|
|
cosmossdk.io/log v1.6.1
|
|
cosmossdk.io/math v1.5.3
|
|
cosmossdk.io/store v1.1.2
|
|
cosmossdk.io/tools/confix v0.1.2
|
|
cosmossdk.io/x/circuit v0.1.1
|
|
cosmossdk.io/x/evidence v0.1.1
|
|
cosmossdk.io/x/feegrant v0.1.1
|
|
cosmossdk.io/x/nft v0.1.0
|
|
cosmossdk.io/x/upgrade v0.2.0
|
|
github.com/cometbft/cometbft v0.38.21
|
|
github.com/cosmos/cosmos-db v1.1.1
|
|
github.com/cosmos/cosmos-proto v1.0.0-beta.5
|
|
github.com/cosmos/cosmos-sdk v0.53.6
|
|
github.com/cosmos/gogoproto v1.7.2
|
|
github.com/cosmos/ibc-go/v10 v10.4.0
|
|
github.com/golang/protobuf v1.5.4
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
github.com/spf13/cast v1.10.0
|
|
github.com/spf13/cobra v1.9.1
|
|
github.com/spf13/pflag v1.0.6
|
|
github.com/spf13/viper v1.21.0
|
|
github.com/stretchr/testify v1.10.0
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a
|
|
google.golang.org/grpc v1.72.2
|
|
google.golang.org/protobuf v1.36.6
|
|
)
|
|
|
|
tool (
|
|
<%= for (depTool) in DepTools { %>
|
|
"<%= depTool %>"<% } %>
|
|
)
|