-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
34 lines (30 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"crates/relayer",
"crates/relayer-types",
"crates/relayer-cli",
"crates/relayer-rest",
"crates/relayer-storage",
"crates/telemetry",
"crates/chain-registry",
"tools/integration-test",
"tools/test-framework",
"tools/check-guide",
"tools/query-events",
"tools/forcerelay-test",
"tools/ibc-test",
]
[patch.crates-io]
arbitrary = { git = "https://github.com/michaelsproul/arbitrary", rev="f002b99989b561ddce62e4cf2887b0f8860ae991" }
# ibc-proto = { git = "https://github.com/cosmos/ibc-proto-rs.git", branch = "main" }
# tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-light-client = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-light-client-verifier = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-testgen = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# Make librocksdb.a and all test binaries that link with it smaller, to save disk space in CI.
[profile.dev.package.ckb-librocksdb-sys]
opt-level = 1
debug = false