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.09 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-clients"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = [ "blockchain", "cosmos", "ibc", "applications", "tendermint" ]
readme = "README.md"
description = """
Maintained by `ibc-rs`, re-exports a comprehensive set of libraries that implement
various IBC light clients, enabling smooth integration with IBC-enabled blockchains.
"""
[package.metadata.docs.rs]
all-features = true
[dependencies]
ibc-client-tendermint = { workspace = true }
ibc-client-wasm-types = { workspace = true }
[features]
default = [ "std" ]
std = [
"ibc-client-tendermint/std",
"ibc-client-wasm-types/std",
]
serde = [
"ibc-client-tendermint/serde",
"ibc-client-wasm-types/serde",
]
schema = [
"ibc-client-tendermint/schema",
"ibc-client-wasm-types/schema",
"serde",
"std",
]
borsh = [
"ibc-client-tendermint/borsh",
]
parity-scale-codec = [
"ibc-client-tendermint/parity-scale-codec",
]