forked from cosmos/ibc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (70 loc) · 1.97 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
[package]
name = "ibc-testkit"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = "README.md"
keywords = [ "blockchain", "consensus", "cosmos", "ibc", "tendermint" ]
description = """
Maintained by `ibc-rs`, serves as a versatile library that provides essential abstractions
and implementations, fulfilling a dual role of enabling rigorous integration testing for
the `ibc-rs` implementation while also aiding host chains in addressing a broad spectrum
of testing scenarios during their integrations with `ibc-rs`.
"""
[dependencies]
# external dependencies
borsh = { workspace = true, optional = true }
derive_more = { workspace = true }
displaydoc = { workspace = true }
parking_lot = { version = "0.12.1", default-features = false }
schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
subtle-encoding = { workspace = true }
typed-builder = { version = "0.18.0" }
# ibc dependencies
ibc = { workspace = true, features = [ "std" ] }
ibc-proto = { workspace = true }
ibc-query = { workspace = true }
# basecoin dependencies
basecoin-store = { version = "0.1.0" }
# cosmos dependencies
tendermint = { workspace = true }
tendermint-testgen = { workspace = true }
[dev-dependencies]
hex = { version = "0.4.2" }
rstest = { workspace = true }
[features]
default = [ "std" ]
std = [
"serde/std",
"serde_json/std",
"ibc/std",
"ibc-proto/std",
"tendermint/std",
]
serde = [
"dep:serde",
"ibc/serde",
"ibc-proto/serde",
"serde_json",
]
schema = [
"dep:schemars",
"ibc/schema",
"ibc-proto/json-schema",
"serde",
"std",
]
borsh = [
"dep:borsh",
"ibc/borsh",
"ibc-proto/borsh",
]
parity-scale-codec = [
"ibc/parity-scale-codec",
"ibc-proto/parity-scale-codec",
]