forked from cosmos/ibc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (65 loc) · 1.77 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
[package]
name = "ibc"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = [ "blockchain", "consensus", "cosmos", "ibc" ]
readme = "README.md"
description = """
Maintained by `ibc-rs`, serves as a top-level library that contain a comprehensive set of
Inter-Blockchain Communication (IBC) implementations, re-exporting data structures and
implementations of various IBC core, clients and applications from the `ibc-core`,
`ibc-clients` and `ibc-apps` crates.
"""
[package.metadata.docs.rs]
all-features = true
[dependencies]
# ibc dependencies
ibc-apps = { workspace = true }
ibc-clients = { workspace = true }
ibc-core = { workspace = true }
ibc-core-host-cosmos = { workspace = true }
ibc-derive = { workspace = true }
ibc-primitives = { workspace = true }
[features]
default = [ "std" ]
std = [
"ibc-apps/std",
"ibc-clients/std",
"ibc-core/std",
"ibc-core-host-cosmos/std",
"ibc-primitives/std",
]
borsh = [
"ibc-apps/borsh",
"ibc-clients/borsh",
"ibc-core/borsh",
"ibc-core-host-cosmos/borsh",
"ibc-primitives/borsh",
]
serde = [
"ibc-apps/serde",
"ibc-clients/serde",
"ibc-core/serde",
"ibc-core-host-cosmos/serde",
"ibc-primitives/serde",
]
schema = [
"ibc-apps/schema",
"ibc-clients/schema",
"ibc-core/schema",
"ibc-core-host-cosmos/schema",
"ibc-primitives/schema",
"serde",
"std",
]
parity-scale-codec = [
"ibc-apps/parity-scale-codec",
"ibc-clients/parity-scale-codec",
"ibc-core/parity-scale-codec",
"ibc-core-host-cosmos/parity-scale-codec",
"ibc-primitives/parity-scale-codec",
]