forked from cosmos/ibc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.06 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
44
45
[package]
name = "ibc-query"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = "README.md"
keywords = [ "blockchain", "cosmos", "ibc", "rpc", "grpc" ]
description = """
Maintained by `ibc-rs`, contains essential IBC query types, utility functions and
gRPC service implementations for the IBC core.
"""
[dependencies]
# external dependencies
displaydoc = { workspace = true, default-features = false }
schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
tonic = { version = "0.12.1" }
# ibc dependencies
ibc = { workspace = true }
ibc-proto = { workspace = true, features = [ "server" ] }
[features]
default = [ "std" ]
std = [
"ibc/std",
"ibc-proto/std",
]
serde = [
"dep:serde",
"ibc/serde",
"ibc-proto/serde",
]
schema = [
"dep:schemars",
"ibc/schema",
"ibc-proto/json-schema",
"serde",
"std",
]