-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from synapseweb3/feat/prepare-ckb4ibc-packet-…
…test feat: prepare ckb4ibc packet test
- Loading branch information
Showing
38 changed files
with
1,125 additions
and
1,044 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,36 @@ | ||
[package] | ||
name = "ibc-relayer" | ||
version = "0.23.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/hermes" | ||
authors = ["Informal Systems <[email protected]>"] | ||
name = "ibc-relayer" | ||
version = "0.23.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/hermes" | ||
authors = ["Informal Systems <[email protected]>"] | ||
rust-version = "1.65" | ||
description = """ | ||
description = """ | ||
Implementation of an IBC Relayer in Rust, as a library | ||
""" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[features] | ||
default = ["flex-error/std", "flex-error/eyre_tracer"] | ||
default = ["flex-error/std", "flex-error/eyre_tracer"] | ||
profiling = [] | ||
telemetry = ["ibc-telemetry"] | ||
|
||
[dependencies] | ||
ibc-proto = { version = "0.28.0" } | ||
ibc-telemetry = { version = "0.23.0", path = "../telemetry", optional = true } | ||
ibc-relayer-types = { version = "0.23.0", path = "../relayer-types", features = ["mocks"] } | ||
ibc-relayer-storage = { version = "0.1.0", path = "../relayer-storage" } | ||
ibc-proto = { version = "0.28.0" } | ||
ibc-telemetry = { version = "0.23.0", path = "../telemetry", optional = true } | ||
ibc-relayer-types = { version = "0.23.0", path = "../relayer-types", features = [ | ||
"mocks", | ||
] } | ||
ibc-relayer-storage = { version = "0.1.0", path = "../relayer-storage" } | ||
|
||
eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6", package = "types" } | ||
eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6", package = "types" } | ||
tree_hash_derive = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" } | ||
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" } | ||
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" } | ||
|
||
eth_light_client_in_ckb-verification = { version = "0.2.1", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", tag = "v0.2.1" } | ||
eth_light_client_in_ckb-prover = { version = "0.2.1", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", tag = "v0.2.1" } | ||
|
@@ -41,7 +43,12 @@ serde_derive = "1.0" | |
thiserror = "1.0.40" | ||
toml = "0.5" | ||
tracing = "0.1.36" | ||
tokio = { version = "1.0", features = ["rt-multi-thread", "time", "sync", "parking_lot"] } | ||
tokio = { version = "1.0", features = [ | ||
"rt-multi-thread", | ||
"time", | ||
"sync", | ||
"parking_lot", | ||
] } | ||
serde_json = { version = "1" } | ||
bytes = "1.4.0" | ||
prost = { version = "0.11" } | ||
|
@@ -53,7 +60,9 @@ bitcoin = { version = "0.29.1", features = ["serde"] } | |
tiny-bip39 = "1.0.0" | ||
hdpath = "0.6.1" | ||
sha2 = "0.10.6" | ||
tiny-keccak = { version = "2.0.2", features = ["keccak"], default-features = false } | ||
tiny-keccak = { version = "2.0.2", features = [ | ||
"keccak", | ||
], default-features = false } | ||
ripemd = "0.1.3" | ||
bech32 = "0.9.1" | ||
itertools = "0.10.5" | ||
|
@@ -77,7 +86,7 @@ ed25519-dalek-bip32 = "0.2.0" | |
generic-array = "0.14.6" | ||
secp256k1 = { version = "0.24.2", features = ["rand-std"] } | ||
async-trait = "0.1" | ||
reqwest = { version = "0.11", features = ["json"]} | ||
reqwest = { version = "0.11", features = ["json"] } | ||
reqwest-middleware = "0.1" | ||
reqwest-retry = "0.1" | ||
eyre = "0.6" | ||
|
@@ -90,7 +99,7 @@ jsonrpc-core = "18.0" | |
strum = { version = "0.24.1", features = ["derive"] } | ||
lazy_static = "1.4.0" | ||
|
||
ckb-ics-axon = {git = "https://github.com/synapseweb3/ckb-ics.git", rev = "fe67bd3"} | ||
ckb-ics-axon = { git = "https://github.com/synapseweb3/ckb-ics.git", rev = "1dc597c" } | ||
cstr_core = "0.2.6" | ||
rlp = "0.5.2" | ||
|
||
|
@@ -120,10 +129,16 @@ version = "0.30.0" | |
default-features = false | ||
|
||
[dev-dependencies] | ||
ibc-relayer-types = { version = "0.23.0", path = "../relayer-types", features = ["mocks"] } | ||
ibc-relayer-types = { version = "0.23.0", path = "../relayer-types", features = [ | ||
"mocks", | ||
] } | ||
serial_test = "1.0.0" | ||
env_logger = "0.10.0" | ||
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"] } | ||
tracing-subscriber = { version = "0.3.14", features = [ | ||
"fmt", | ||
"env-filter", | ||
"json", | ||
] } | ||
test-log = { version = "0.2.10", features = ["trace"] } | ||
tempfile = "3.3.0" | ||
rand = "0.8.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.