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
37 lines
1.1 KiB
Modula-2
37 lines
1.1 KiB
Modula-2
module app
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
cosmossdk.io/api v0.3.1
|
|
cosmossdk.io/core v0.5.1
|
|
cosmossdk.io/depinject v1.0.0-alpha.3
|
|
cosmossdk.io/errors v1.0.0-beta.7
|
|
cosmossdk.io/math v1.0.1
|
|
github.com/bufbuild/buf v1.32.1
|
|
github.com/cometbft/cometbft v0.37.2
|
|
github.com/cometbft/cometbft-db v0.8.0
|
|
github.com/cosmos/cosmos-proto v1.0.0-beta.2
|
|
github.com/cosmos/cosmos-sdk v0.47.3
|
|
github.com/cosmos/gogoproto v1.4.10
|
|
github.com/cosmos/ibc-go/v7 v7.2.0
|
|
github.com/golang/protobuf v1.5.4
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2
|
|
github.com/spf13/cast v1.5.1
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.9.0
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
|
|
google.golang.org/grpc v1.64.0
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
|
|
google.golang.org/protobuf v1.34.1
|
|
)
|
|
|
|
replace (
|
|
// use cosmos fork of keyring
|
|
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
|
|
// replace broken goleveldb
|
|
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
|
|
)
|