-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Cargo workspace to manage Cargo metadata
- Loading branch information
1 parent
f44fe65
commit 010707d
Showing
13 changed files
with
374 additions
and
513 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,49 +1,37 @@ | ||
[package] | ||
name = "ibc-cosmos-client-components" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
repository = { workspace = true } | ||
authors = { workspace = true } | ||
rust-version = { workspace = true } | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/ibc-rs" | ||
authors = ["Informal Systems <hello@informal.systems>"] | ||
rust-version = "1.72" | ||
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"] | ||
|
||
[dependencies] | ||
ibc-proto = { version = "0.38.0" } | ||
ibc-relayer = { version = "0.26.0" } | ||
ibc-relayer-types = { version = "0.26.0" } | ||
cgp-core = { version = "0.1.0" } | ||
ibc-relayer-runtime = { version = "0.1.0" } | ||
ibc-relayer-components = { version = "0.1.0" } | ||
ibc-relayer-components-extra = { version = "0.1.0" } | ||
ibc-relayer-subscription = { version = "0.1.0" } | ||
|
||
async-trait = "0.1.56" | ||
flex-error = { version = "0.4.4", default-features = false } | ||
prost = { version = "0.12" } | ||
eyre = "0.6.8" | ||
tokio = "1.0" | ||
itertools = "0.10.3" | ||
futures = "0.3" | ||
tracing = "0.1.36" | ||
http = "0.2.10" | ||
tonic = { version = "0.10", features = ["tls", "tls-roots"] } | ||
|
||
[dependencies.tendermint] | ||
version = "0.34" | ||
features = ["secp256k1"] | ||
ibc-proto = { workspace = true } | ||
ibc-relayer = { workspace = true } | ||
ibc-relayer-types = { workspace = true } | ||
cgp-core = { workspace = true } | ||
ibc-relayer-runtime = { workspace = true } | ||
ibc-relayer-components = { workspace = true } | ||
ibc-relayer-components-extra = { workspace = true } | ||
ibc-relayer-subscription = { workspace = true } | ||
tendermint = { workspace = true, features = ["secp256k1"] } | ||
tendermint-rpc = { workspace = true, features = ["http-client", "websocket-client"] } | ||
|
||
[dependencies.tendermint-rpc] | ||
version = "0.34" | ||
features = ["http-client", "websocket-client"] | ||
async-trait = { workspace = true } | ||
flex-error = { workspace = true } | ||
prost = { workspace = true } | ||
eyre = { workspace = true } | ||
tokio = { workspace = true } | ||
itertools = { workspace = true } | ||
futures = { workspace = true } | ||
tracing = { workspace = true } | ||
http = { workspace = true } | ||
tonic = { workspace = true, features = ["tls", "tls-roots"] } | ||
|
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,20 +1,17 @@ | ||
[package] | ||
name = "ibc-relayer-components-extra" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
repository = { workspace = true } | ||
authors = { workspace = true } | ||
rust-version = { workspace = true } | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/ibc-rs" | ||
authors = ["Informal Systems <hello@informal.systems>"] | ||
rust-version = "1.72" | ||
description = """ | ||
Implementation of an IBC Relayer in Rust, as a library | ||
""" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[dependencies] | ||
cgp-core = { version = "0.1.0" } | ||
ibc-relayer-components = { version = "0.1.0" } | ||
cgp-core = { workspace = true } | ||
ibc-relayer-components = { workspace = true } |
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,19 +1,16 @@ | ||
[package] | ||
name = "ibc-relayer-components" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
repository = { workspace = true } | ||
authors = { workspace = true } | ||
rust-version = { workspace = true } | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/ibc-rs" | ||
authors = ["Informal Systems <hello@informal.systems>"] | ||
rust-version = "1.72" | ||
description = """ | ||
Implementation of an IBC Relayer in Rust, as a library | ||
""" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[dependencies] | ||
cgp-core = { version = "0.1.0" } | ||
cgp-core = { workspace = true } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,46 @@ | ||
[package] | ||
name = "ibc-relayer-cosmos" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
repository = { workspace = true } | ||
authors = { workspace = true } | ||
rust-version = { workspace = true } | ||
readme = "README.md" | ||
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] | ||
repository = "https://github.com/informalsystems/ibc-rs" | ||
authors = ["Informal Systems <hello@informal.systems>"] | ||
rust-version = "1.72" | ||
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"] | ||
|
||
[dependencies] | ||
ibc-proto = { version = "0.38.0" } | ||
ibc-relayer = { version = "0.26.0" } | ||
ibc-relayer-types = { version = "0.26.0" } | ||
ibc-telemetry = { version = "0.26.0" } | ||
cgp-core = { version = "0.1.0" } | ||
ibc-relayer-runtime = { version = "0.1.0" } | ||
ibc-relayer-components = { version = "0.1.0" } | ||
ibc-relayer-components-extra = { version = "0.1.0" } | ||
ibc-relayer-subscription = { version = "0.1.0" } | ||
ibc-cosmos-client-components = { version = "0.1.0" } | ||
|
||
serde = "1.0" | ||
serde_derive = "1.0" | ||
async-trait = "0.1.56" | ||
flex-error = { version = "0.4.4", default-features = false } | ||
prost = { version = "0.12" } | ||
eyre = "0.6.8" | ||
tokio = "1.24" | ||
itertools = "0.10.3" | ||
futures = "0.3" | ||
tracing = "0.1.36" | ||
http = "0.2.9" | ||
opentelemetry = { version = "0.17.0", features = ["metrics"] } | ||
tonic = { version = "0.9", features = ["tls", "tls-roots"] } | ||
moka = { version = "0.11", features = ["future"] } | ||
|
||
[dependencies.tendermint] | ||
version = "0.34" | ||
features = ["secp256k1"] | ||
ibc-proto = { workspace = true } | ||
ibc-relayer = { workspace = true } | ||
ibc-relayer-types = { workspace = true } | ||
ibc-telemetry = { workspace = true } | ||
cgp-core = { workspace = true } | ||
ibc-relayer-runtime = { workspace = true } | ||
ibc-relayer-components = { workspace = true } | ||
ibc-relayer-components-extra = { workspace = true } | ||
ibc-relayer-subscription = { workspace = true } | ||
ibc-cosmos-client-components = { workspace = true } | ||
tendermint = { workspace = true, features = ["secp256k1"] } | ||
tendermint-rpc = { workspace = true, features = ["http-client", "websocket-client"] } | ||
|
||
[dependencies.tendermint-rpc] | ||
version = "0.34" | ||
features = ["http-client", "websocket-client"] | ||
async-trait = { workspace = true } | ||
eyre = { workspace = true } | ||
flex-error = { workspace = true } | ||
prost = { workspace = true } | ||
tracing = { workspace = true } | ||
tokio = { workspace = true } | ||
tonic = { workspace = true, features = ["tls", "tls-roots"] } | ||
serde = { workspace = true } | ||
serde_derive = { workspace = true } | ||
itertools = { workspace = true } | ||
futures = { workspace = true } | ||
http = { workspace = true } | ||
|
||
opentelemetry = { version = "0.17.0", features = ["metrics"] } | ||
moka = { version = "0.11", features = ["future"] } |
Oops, something went wrong.