diff --git a/code/Cargo.toml b/code/Cargo.toml index 9f41c7c4fa8..b52c2bb87a5 100644 --- a/code/Cargo.toml +++ b/code/Cargo.toml @@ -382,6 +382,7 @@ hex = { version = "0.4.3", default-features = false, features = [ "alloc", "serde", ] } +hex-literal = "0.3.4" strum = { version = "0.25.0", default-features = false, features = ["derive"] } cosmwasm-std = { git = "https://github.com/dzmitry-lahoda-forks/cosmwasm", rev = "1277597cbf380a8d04dbe676d9cb344ca31634b6", default-features = false, features = [ diff --git a/code/integration-tests/local-integration-tests/Cargo.toml b/code/integration-tests/local-integration-tests/Cargo.toml index ca5a978de9d..e6b17c71c95 100644 --- a/code/integration-tests/local-integration-tests/Cargo.toml +++ b/code/integration-tests/local-integration-tests/Cargo.toml @@ -81,7 +81,7 @@ benchmarking = { package = "frame-benchmarking", git = "https://github.com/parit codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive", ] } -hex-literal = { version = "0.3.3", optional = true } +hex-literal = { workspace = true, optional = true } system-benchmarking = { package = "frame-system-benchmarking", git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" } # Parachain Utilities diff --git a/code/parachain/frame/airdrop/Cargo.toml b/code/parachain/frame/airdrop/Cargo.toml index 73d61a52330..f9ea14b35ec 100644 --- a/code/parachain/frame/airdrop/Cargo.toml +++ b/code/parachain/frame/airdrop/Cargo.toml @@ -16,7 +16,7 @@ version = "3.0.0" [dev-dependencies] composable-tests-helpers = { path = "../composable-tests-helpers" } -hex-literal = "0.3.3" +hex-literal.workspace = true libsecp256k1 = { version = "0.7.0" } pallet-balances = { workspace = true } pallet-timestamp = { workspace = true } diff --git a/code/parachain/frame/cosmwasm/Cargo.toml b/code/parachain/frame/cosmwasm/Cargo.toml index 12f98bb0032..2cf096d2138 100644 --- a/code/parachain/frame/cosmwasm/Cargo.toml +++ b/code/parachain/frame/cosmwasm/Cargo.toml @@ -37,7 +37,7 @@ frame-benchmarking = { default-features = false, workspace = true, optional = tr frame-support = { default-features = false, workspace = true } frame-system = { default-features = false, workspace = true } hex = { version = "0.4", default-features = false, features = ["alloc"] } -hex-literal = "0.3.4" +hex-literal.workspace = true vec1 = { version = "*", default-features = false, features = ["smallvec-v1"] } ibc = { workspace = true, default-features = false } diff --git a/code/parachain/frame/crowdloan-rewards/Cargo.toml b/code/parachain/frame/crowdloan-rewards/Cargo.toml index c5b4ab8de36..01361a55c78 100644 --- a/code/parachain/frame/crowdloan-rewards/Cargo.toml +++ b/code/parachain/frame/crowdloan-rewards/Cargo.toml @@ -19,7 +19,7 @@ version = "3.0.0" composable-tests-helpers = { path = "../composable-tests-helpers" } ed25519-dalek = "1.0.1" frame-benchmarking = { default-features = false, workspace = true } -hex-literal = "0.3.3" +hex-literal.workspace = true libsecp256k1 = { version = "0.7.0" } pallet-balances = { workspace = true } pallet-timestamp = { workspace = true } diff --git a/code/parachain/frame/dutch-auction/Cargo.toml b/code/parachain/frame/dutch-auction/Cargo.toml index 46f842f66e3..9228b17a4c6 100644 --- a/code/parachain/frame/dutch-auction/Cargo.toml +++ b/code/parachain/frame/dutch-auction/Cargo.toml @@ -47,7 +47,7 @@ xcm = { workspace = true, default-features = false } [dev-dependencies] composable-tests-helpers = { path = "../composable-tests-helpers" } frame-benchmarking = { workspace = true } -hex-literal = { version = "0.3.3" } +hex-literal.workspace = true orml-tokens = { workspace = true } pallet-assets = { path = '../assets' } pallet-balances = { workspace = true } diff --git a/code/parachain/frame/lending/Cargo.toml b/code/parachain/frame/lending/Cargo.toml index 62979cdd8f3..32897446921 100644 --- a/code/parachain/frame/lending/Cargo.toml +++ b/code/parachain/frame/lending/Cargo.toml @@ -54,7 +54,7 @@ frame-benchmarking = { workspace = true } frame-executive = { default-features = false, features = [ "try-runtime", ], workspace = true } -hex-literal = "0.3.3" +hex-literal.workspace = true once_cell = "1.8.0" orml-tokens = { workspace = true } orml-traits = { workspace = true } diff --git a/code/parachain/frame/liquidations/Cargo.toml b/code/parachain/frame/liquidations/Cargo.toml index 99876ef64d9..26d59e28429 100644 --- a/code/parachain/frame/liquidations/Cargo.toml +++ b/code/parachain/frame/liquidations/Cargo.toml @@ -49,7 +49,7 @@ xcm = { workspace = true, default-features = false } [dev-dependencies] composable-tests-helpers = { path = "../composable-tests-helpers" } frame-benchmarking = { default-features = false, workspace = true } -hex-literal = { version = "0.3.3" } +hex-literal.workspace = true orml-tokens = { workspace = true } orml-traits = { workspace = true } pallet-assets = { path = "../assets" } diff --git a/code/parachain/runtime/composable/Cargo.toml b/code/parachain/runtime/composable/Cargo.toml index be7d0a16f9b..724bbc02e08 100644 --- a/code/parachain/runtime/composable/Cargo.toml +++ b/code/parachain/runtime/composable/Cargo.toml @@ -78,7 +78,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = "derive", ] } frame-benchmarking = { workspace = true, default-features = false, optional = true } -hex-literal = { version = "0.3.4" } +hex-literal.workspace = true frame-system-benchmarking = { workspace = true, default-features = false, optional = true } diff --git a/code/parachain/runtime/picasso/Cargo.toml b/code/parachain/runtime/picasso/Cargo.toml index 72c22c22d24..8c005693dc6 100644 --- a/code/parachain/runtime/picasso/Cargo.toml +++ b/code/parachain/runtime/picasso/Cargo.toml @@ -100,7 +100,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = "derive", ] } frame-benchmarking = { workspace = true, default-features = false, optional = true } -hex-literal = { version = "0.3.3" } +hex-literal.workspace = true frame-system-benchmarking = { workspace = true, default-features = false, optional = true } collator-selection = { workspace = true, default-features = false } diff --git a/code/parachain/runtime/primitives/Cargo.toml b/code/parachain/runtime/primitives/Cargo.toml index 8f0f7775888..bb369103ed9 100644 --- a/code/parachain/runtime/primitives/Cargo.toml +++ b/code/parachain/runtime/primitives/Cargo.toml @@ -14,7 +14,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = composable-support = { path = "../../frame/composable-support", default-features = false } composable-traits = { path = "../../frame/composable-traits", default-features = false } frame-support = { workspace = true, default-features = false } -lazy_static = { version = "1.4.0", features = ["spin_no_std"] } scale-info = { workspace = true, default-features = false, features = [ "derive", ] }