forked from cosmos/ibc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (79 loc) · 2.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "ibc-core-channel"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = [ "blockchain", "cosmos", "ibc", "channel" ]
readme = "./../README.md"
description = """
Maintained by `ibc-rs`, contains the implementation of the ICS-04 Channel & Packet Semantics and
re-exports essential data structures and domain types from `ibc-core-channel-types` crate.
"""
[package.metadata.docs.rs]
all-features = true
[dependencies]
ibc-core-client = { workspace = true }
ibc-core-connection = { workspace = true }
ibc-core-channel-types = { workspace = true }
ibc-core-commitment-types = { workspace = true }
ibc-core-host = { workspace = true }
ibc-core-handler-types = { workspace = true }
ibc-core-router = { workspace = true }
ibc-primitives = { workspace = true }
[features]
default = [ "std" ]
std = [
"ibc-core-client/std",
"ibc-core-connection/std",
"ibc-core-channel-types/std",
"ibc-core-commitment-types/std",
"ibc-core-host/std",
"ibc-core-handler-types/std",
"ibc-core-router/std",
"ibc-primitives/std",
]
serde = [
"ibc-core-client/serde",
"ibc-core-connection/serde",
"ibc-core-channel-types/serde",
"ibc-core-commitment-types/serde",
"ibc-core-host/serde",
"ibc-core-handler-types/serde",
"ibc-core-router/serde",
"ibc-primitives/serde",
]
schema = [
"ibc-core-client/schema",
"ibc-core-connection/schema",
"ibc-core-channel-types/schema",
"ibc-core-commitment-types/schema",
"ibc-core-host/schema",
"ibc-core-handler-types/schema",
"ibc-core-router/schema",
"ibc-primitives/schema",
"serde",
"std",
]
borsh = [
"ibc-core-client/borsh",
"ibc-core-connection/borsh",
"ibc-core-channel-types/borsh",
"ibc-core-commitment-types/borsh",
"ibc-core-host/borsh",
"ibc-core-handler-types/borsh",
"ibc-core-router/borsh",
"ibc-primitives/borsh",
]
parity-scale-codec = [
"ibc-core-client/parity-scale-codec",
"ibc-core-connection/parity-scale-codec",
"ibc-core-channel-types/parity-scale-codec",
"ibc-core-commitment-types/parity-scale-codec",
"ibc-core-host/parity-scale-codec",
"ibc-core-handler-types/parity-scale-codec",
"ibc-core-router/parity-scale-codec",
"ibc-primitives/parity-scale-codec",
]