From 6eacf11319d1e1ab6a78b84a6de465e7c7aa272d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Aug 2023 05:10:37 +0000 Subject: [PATCH] Update scale-encode requirement from 0.3.0 to 0.5.0 Updates the requirements on [scale-encode](https://github.com/paritytech/scale-encode) to permit the latest version. - [Release notes](https://github.com/paritytech/scale-encode/releases) - [Changelog](https://github.com/paritytech/scale-encode/blob/main/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-encode/compare/v0.3.0...v0.5.0) --- updated-dependencies: - dependency-name: scale-encode dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/env/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index d3f4840024d..77dd15bf486 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -48,7 +48,7 @@ secp256k1 = { version = "0.27.0", features = ["recovery", "global-context"], opt # Sadly couldn't be marked as dev-dependency. # Never use this crate outside the off-chain environment! scale-decode = { version = "0.7.0", default-features = false, optional = true } -scale-encode = { version = "0.3.0", default-features = false, optional = true } +scale-encode = { version = "0.5.0", default-features = false, optional = true } scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true } [dev-dependencies] diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index b2a3209259a..90b0f13d2f8 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -19,7 +19,7 @@ derive_more = { version = "0.99", default-features = false, features = ["from", ink_prelude = { version = "4.2.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } scale-decode = { version = "0.7.0", default-features = false, features = ["derive"], optional = true } -scale-encode = { version = "0.3.0", default-features = false, features = ["derive"], optional = true } +scale-encode = { version = "0.5.0", default-features = false, features = ["derive"], optional = true } scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true } xxhash-rust = { version = "0.8", features = ["const_xxh32"] }