Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchen1991 committed Aug 7, 2024
1 parent 7ea5cae commit e2321ab
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 93 deletions.
86 changes: 43 additions & 43 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,45 @@
resolver = "2"
# members sorted by publishing order to `crates.io`
members = [
"ibc-derive",
"ibc-primitives",
"ibc-core/ics24-host/types",
"ibc-core/ics26-routing/types",
"ibc-core/ics23-commitment/types",
"ibc-core/ics02-client/types",
"ibc-core/ics03-connection/types",
"ibc-core/ics04-channel/types",
"ibc-core/ics25-handler/types",
"ibc-core/ics02-client/context",
"ibc-core/ics24-host",
"ibc-core/ics26-routing",
"ibc-core/ics02-client",
"ibc-core/ics03-connection",
"ibc-core/ics04-channel",
"ibc-core/ics25-handler",
"ibc-core",
"ibc-clients/ics07-tendermint/types",
"ibc-clients/ics07-tendermint",
"ibc-clients/ics08-wasm/types",
"ibc-clients",
"ibc-apps/ics20-transfer/types",
"ibc-apps/ics20-transfer",
"ibc-apps/ics721-nft-transfer/types",
"ibc-apps/ics721-nft-transfer",
"ibc-apps",
"ibc-core/ics24-host/cosmos",
"ibc-data-types",
"ibc",
"ibc-query",
"ibc-testkit",
"ibc-derive",
"ibc-primitives",
"ibc-core/ics24-host/types",
"ibc-core/ics26-routing/types",
"ibc-core/ics23-commitment/types",
"ibc-core/ics02-client/types",
"ibc-core/ics03-connection/types",
"ibc-core/ics04-channel/types",
"ibc-core/ics25-handler/types",
"ibc-core/ics02-client/context",
"ibc-core/ics24-host",
"ibc-core/ics26-routing",
"ibc-core/ics02-client",
"ibc-core/ics03-connection",
"ibc-core/ics04-channel",
"ibc-core/ics25-handler",
"ibc-core",
"ibc-clients/ics07-tendermint/types",
"ibc-clients/ics07-tendermint",
"ibc-clients/ics08-wasm/types",
"ibc-clients",
"ibc-apps/ics20-transfer/types",
"ibc-apps/ics20-transfer",
"ibc-apps/ics721-nft-transfer/types",
"ibc-apps/ics721-nft-transfer",
"ibc-apps",
"ibc-core/ics24-host/cosmos",
"ibc-data-types",
"ibc",
"ibc-query",
"ibc-testkit",

# internal crates that are not published
"tests-integration",
# internal crates that are not published
"tests-integration",
]

exclude = [
"ci/cw-check",
"ci/no-std-check",
"ci/cw-check",
"ci/no-std-check",
]

[workspace.package]
Expand All @@ -57,7 +57,7 @@ authors = [ "Informal Systems <[email protected]>" ]
base64 = { version = "0.22", default-features = false }
borsh = { version = "1", default-features = false, features = [ "derive" ] }
displaydoc = { version = "0.2.5", default-features = false }
prost = { version = "0.12", default-features = false }
prost = { version = "0.13.1", default-features = false }
derive_more = { version = "0.99.18", default-features = false, features = [ "from", "into", "display", "try_into" ] }
rstest = { version = "0.21" }
schemars = { version = "0.8.21" }
Expand Down Expand Up @@ -105,15 +105,15 @@ ibc-client-wasm-types = { version = "0.53.0", path = "./ibc-clients/ics08-
ibc-app-transfer-types = { version = "0.53.0", path = "./ibc-apps/ics20-transfer/types", default-features = false }
ibc-app-nft-transfer-types = { version = "0.53.0", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }

ibc-proto = { version = "0.46.0", default-features = false }
ibc-proto = { version = "0.47.0", default-features = false }

# cosmos dependencies
tendermint = { version = "0.37.0", default-features = false }
tendermint-light-client = { version = "0.37.0", default-features = false }
tendermint-light-client-verifier = { version = "0.37.0", default-features = false }
tendermint-proto = { version = "0.37.0", default-features = false }
tendermint-rpc = { version = "0.37.0", default-features = false }
tendermint-testgen = { version = "0.37.0", default-features = false }
tendermint = { version = "0.39.0", default-features = false }
tendermint-light-client = { version = "0.39.0", default-features = false }
tendermint-light-client-verifier = { version = "0.39.0", default-features = false }
tendermint-proto = { version = "0.39.0", default-features = false }
tendermint-rpc = { version = "0.39.0", default-features = false }
tendermint-testgen = { version = "0.39.0", default-features = false }

# parity dependencies
parity-scale-codec = { version = "3.6.12", default-features = false, features = [ "derive" ] }
Expand Down
14 changes: 7 additions & 7 deletions ci/no-std-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ resolver = "2"

[dependencies]
ibc = { path = "../../ibc", default-features = false, features = [ "serde" ] }
ibc-proto = { version = "0.46", default-features = false, features = [
"parity-scale-codec",
"borsh",
"serde",
ibc-proto = { version = "0.47", default-features = false, features = [
"parity-scale-codec",
"borsh",
"serde",
] }
tendermint = { version = "0.37", default-features = false }
tendermint-proto = { version = "0.37", default-features = false }
tendermint-light-client-verifier = { version = "0.37", default-features = false, features = [ "rust-crypto" ] }
tendermint = { version = "0.39", default-features = false }
tendermint-proto = { version = "0.39", default-features = false }
tendermint-light-client-verifier = { version = "0.39", default-features = false, features = [ "rust-crypto" ] }

sp-core = { version = "34.0", default-features = false, optional = true }
sp-io = { version = "37.0", default-features = false, optional = true }
Expand Down
8 changes: 4 additions & 4 deletions cosmwasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
resolver = "2"

members = [
"ibc-clients/cw-context",
"ibc-clients/ics07-tendermint",
"ibc-clients/cw-context",
"ibc-clients/ics07-tendermint",
]

[workspace.package]
Expand Down Expand Up @@ -34,5 +34,5 @@ ibc-client-wasm-types = { version = "0.53.0", path = "./../ibc-clients/ics08-was
ibc-testkit = { version = "0.53.0", path = "./../ibc-testkit", default-features = false }

# cosmos dependencies
tendermint = { version = "0.37.0", default-features = false }
tendermint-testgen = { version = "0.37.0", default-features = false }
tendermint = { version = "0.39.0", default-features = false }
tendermint-testgen = { version = "0.39.0", default-features = false }
56 changes: 28 additions & 28 deletions ibc-core/ics23-commitment/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ subtle-encoding = { workspace = true }
# ibc dependencies
ibc-proto = { workspace = true }
ibc-primitives = { workspace = true }
ics23 = { version = "0.11", default-features = false, features = [ "host-functions" ] }
ics23 = { version = "0.12", default-features = false, features = [ "host-functions" ] }
ibc-core-host-types = { workspace = true }

# parity dependencies
Expand All @@ -43,39 +43,39 @@ rstest = { workspace = true }
[features]
default = [ "std" ]
std = [
"displaydoc/std",
"serde/std",
"subtle-encoding/std",
"ibc-primitives/std",
"ibc-core-host-types/std",
"ibc-proto/std",
"ics23/std",
"displaydoc/std",
"serde/std",
"subtle-encoding/std",
"ibc-primitives/std",
"ibc-core-host-types/std",
"ibc-proto/std",
"ics23/std",
]
serde = [
"dep:serde",
"ibc-primitives/serde",
"ibc-core-host-types/serde",
"ibc-proto/serde",
"ics23/serde",
"dep:serde",
"ibc-primitives/serde",
"ibc-core-host-types/serde",
"ibc-proto/serde",
"ics23/serde",
]
schema = [
"dep:schemars",
"ibc-proto/json-schema",
"ibc-primitives/schema",
"ibc-core-host-types/schema",
"serde",
"std",
"dep:schemars",
"ibc-proto/json-schema",
"ibc-primitives/schema",
"ibc-core-host-types/schema",
"serde",
"std",
]
borsh = [
"dep:borsh",
"ibc-proto/borsh",
"ibc-primitives/borsh",
"ibc-core-host-types/borsh",
"dep:borsh",
"ibc-proto/borsh",
"ibc-primitives/borsh",
"ibc-core-host-types/borsh",
]
parity-scale-codec = [
"dep:parity-scale-codec",
"dep:scale-info",
"ibc-primitives/parity-scale-codec",
"ibc-core-host-types/parity-scale-codec",
"ibc-proto/parity-scale-codec",
"dep:parity-scale-codec",
"dep:scale-info",
"ibc-primitives/parity-scale-codec",
"ibc-core-host-types/parity-scale-codec",
"ibc-proto/parity-scale-codec",
]
22 changes: 11 additions & 11 deletions ibc-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = """
displaydoc = { workspace = true, default-features = false }
schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
tonic = { version = "0.11" }
tonic = { version = "0.12.1" }

# ibc dependencies
ibc = { workspace = true }
Expand All @@ -28,18 +28,18 @@ ibc-proto = { workspace = true, features = [ "server" ] }
[features]
default = [ "std" ]
std = [
"ibc/std",
"ibc-proto/std",
"ibc/std",
"ibc-proto/std",
]
serde = [
"dep:serde",
"ibc/serde",
"ibc-proto/serde",
"dep:serde",
"ibc/serde",
"ibc-proto/serde",
]
schema = [
"dep:schemars",
"ibc/schema",
"ibc-proto/json-schema",
"serde",
"std",
"dep:schemars",
"ibc/schema",
"ibc-proto/json-schema",
"serde",
"std",
]

0 comments on commit e2321ab

Please sign in to comment.