forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (38 loc) · 1.45 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "ibc-proto"
version = "0.19.1"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/informalsystems/ibc-rs/tree/master/proto"
readme = "README.md"
categories = ["cryptography::cryptocurrencies", "encoding", "no-std"]
keywords = ["blockchain", "cosmos", "tendermint", "ibc", "proto"]
exclude = ["definitions"]
rust-version = "1.60"
description = """
ibc-proto provides Cosmos SDK & IBC Protocol Buffers definitions
"""
[lib]
name = "ibc_proto"
path = "src/lib.rs"
doctest = false
[package.metadata.docs.rs]
all-features = true
[dependencies]
prost = { version = "0.10", default-features = false }
prost-types = { version = "0.10", default-features = false }
bytes = { version = "1.1", default-features = false }
tonic = { version = "0.7", optional = true, default-features = false }
serde = { version = "1.0", default-features = false }
schemars = { version = "0.8", optional = true }
base64 = { version = "0.13", default-features = false, features = ["alloc"] }
[dependencies.tendermint-proto]
version = "=0.23.8"
default-features = false
[features]
default = ["std", "client"]
std = []
client = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost"]
json-schema = ["std", "schemars"]
server = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost"]