-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathCargo.toml
77 lines (71 loc) · 1.99 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
[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
bon = { version = "3.1.1" }
borsh = { workspace = true, optional = true }
derive_more = { workspace = true }
displaydoc = { workspace = true }
parking_lot = { version = "0.12.3", default-features = false }
schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
serde-json = { workspace = true, optional = true }
subtle-encoding = { workspace = true }
# ibc dependencies
ibc = { workspace = true, features = [ "std" ] }
ibc-proto = { workspace = true }
ibc-query = { workspace = true }
# basecoin dependencies
basecoin-store = { version = "0.2.0" }
# cosmos dependencies
tendermint = { workspace = true }
tendermint-testgen = { workspace = true }
[dev-dependencies]
hex = { workspace = true }
rstest = { workspace = true }
[features]
default = [ "std" ]
std = [
"hex/std",
"serde/std",
"serde-json/std",
"ibc/std",
"ibc-proto/std",
"tendermint/std",
]
serde = [
"dep:serde",
"ibc/serde",
"ibc-proto/serde",
"dep: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",
]