forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 816 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "ibc-proto"
version = "0.11.0"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/informalsystems/ibc-rs/tree/master/proto"
readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies", "database"]
keywords = ["blockchain", "cosmos", "tendermint", "ibc", "proto"]
exclude = ["definitions"]
description = """
ibc-proto is a Rust implementation of the Cosmos SDK & IBC proto structs.
"""
[lib]
name = "ibc_proto"
path = "src/lib.rs"
[package.metadata.docs.rs]
all-features = true
[dependencies]
prost = "0.7"
prost-types = "0.7"
bytes = "1.1"
tonic = "0.4"
getrandom = { version = "0.2", features = ["js"] }
[dependencies.tendermint-proto]
version = "=0.22.0"