Skip to content

Commit

Permalink
cosmrs: add grpc features (#258)
Browse files Browse the repository at this point in the history
Transitively enables gRPC support in `cosmos-sdk-proto`
  • Loading branch information
tony-iqlusion authored Jul 26, 2022
1 parent 5d3bed0 commit b9d82af
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cosmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ getrandom = { version = "0.2", features = ["js"] }
hex-literal = "0.3"

[features]
default = ["bip32"]
dev = ["rpc", "tokio"]
rpc = ["tendermint-rpc"]
cosmwasm = ["cosmos-sdk-proto/cosmwasm"]
default = ["bip32"]
cosmwasm = ["cosmos-sdk-proto/cosmwasm"]
dev = ["rpc", "tokio"]
grpc = ["cosmos-sdk-proto/grpc-transport", "grpc-core"]
grpc-core = ["cosmos-sdk-proto/grpc"]
rpc = ["tendermint-rpc"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit b9d82af

Please sign in to comment.