Skip to content

Commit

Permalink
fixing transient features (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda authored Aug 1, 2023
1 parent fd0a491 commit ae2730e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 32 deletions.
69 changes: 39 additions & 30 deletions contracts/pallet-ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,22 @@ default-features = false

[dev-dependencies]
chrono = "0.4.19"
env_logger = "0.10.0"
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
hex = "0.4.3"
hex-literal = { version = "0.3.4" }
orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.39" }
orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.39" }
pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
pallet-ibc-ping = { path = "ping", default-features = false }
pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
prost = { version = "0.11" }
simple-iavl = { path = "simple-iavl" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false}
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false}
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false}
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false}
tendermint = { git = "https://github.com/informalsystems/tendermint-rs", rev = "e81f7bf23d63ffbcd242381d1ce5e35da3515ff1", default-features = false }
pallet-ibc-ping = { path = "ping", default-features = false }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"}
env_logger = "0.10.0"

[dev-dependencies.ibc]
path = "../../ibc/modules"
Expand All @@ -108,38 +108,47 @@ features = ["mocks"]
default = ["std"]
testing = []
std = [
"balances/std",
"beefy-client-primitives/std",
"codec/std",
"log/std",
"scale-info/std",
"serde/std",
"serde_json/std",
"sha2/std",
"cumulus-primitives-core/std",
"finality-grandpa/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"sp-runtime/std",
"sp-core/std",
"sp-std/std",
"sp-io/std",
"sp-trie/std",
"balances/std",
"cumulus-primitives-core/std",
"pallet-assets/std",
"ibc/std",
"ibc-proto/std",
"ibc-primitives/std",
"parachain-info/std",
"grandpa-client-primitives/std",
"beefy-client-primitives/std",
"light-client-common/std",
"hex/std",
"ibc-primitives/std",
"ibc-proto/std",
"ibc/std",
"ics07-tendermint/std",
"ics10-grandpa/std",
"ics11-beefy/std",
"ics07-tendermint/std",
"light-client-common/std",
"log/std",
"orml-tokens/std",
"orml-traits/std",
"pallet-assets/std",
"pallet-aura/std",
"pallet-membership/std",
"pallet-timestamp/std",
"parachain-info/std",
"scale-info/std",
"serde_json/std",
"serde/std",
"sha2/std",
"simple-iavl/std",
"sp-consensus-aura/std",
"sp-consensus-slots/std",
"sp-core/std",
"sp-finality-grandpa/std",
"sp-finality-grandpa/std",
"finality-grandpa/std",
"hex/std",
"pallet-timestamp/std"
"sp-io/std",
"sp-keystore/std",
"sp-runtime/std",
"sp-std/std",
"sp-trie/std",
"tendermint/std",
]

runtime-benchmarks = [
Expand Down
4 changes: 2 additions & 2 deletions contracts/pallet-ibc/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ targets = ["x86_64-unknown-linux-gnu"]

ripemd = { version = "0.1.1", default-features = false }
scale-info = { version = '2.1.1', default-features = false }
serde = { version = "1.0.136", features = ["derive"], optional = true }
serde = { version = "1.0.136", default-features = false, features = ["derive"], optional = true }
sha2 = { version = "0.10.2", default-features = false }
sha3 = { version = "0.10.1", default-features = false }
hex = { version = "0.4.3", default-features = false }
base58 = "0.2.0"
base58 = { default-features = false, version = "0.2.0"}
blake2 = { version = "0.10", default-features = false }

sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false }
Expand Down

0 comments on commit ae2730e

Please sign in to comment.