From f8e408626fd32efa3601f7d7cd6770434593d60c Mon Sep 17 00:00:00 2001 From: Vera Abramova Date: Tue, 12 Nov 2024 16:15:06 +0200 Subject: [PATCH] chore: upd deps, fix doc typo --- Cargo.toml | 10 +++++----- src/storage_data.rs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3e3e827..acf66e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,13 +14,13 @@ exclude = ["/for_tests", "/.github"] [dependencies] bitvec = {version = "1.0.1", default-features = false, features = ["alloc"]} external-memory-tools = {version = "0.1.1", default-features = false} -frame-metadata = {version = "16.0.0", default-features = false, features = ["current", "decode"]} +frame-metadata = {version = "17.0.0", default-features = false, features = ["current", "decode"]} hex = {version = "0.4.3", default-features = false, features = ["alloc"]} -num-bigint = {version = "0.4.3", default-features = false} +num-bigint = {version = "0.4.6", default-features = false} plot_icon = {version = "0.3.0", optional = true, default-features = false, features = ["pix"]} -parity-scale-codec = {version = "3.6.9", default-features = false, features = ["derive", "bit-vec"]} -primitive-types = {version = "0.12.2", default-features = false} -scale-info = {version = "2.10.0", default-features = false} +parity-scale-codec = {version = "3.6.12", default-features = false, features = ["derive", "bit-vec"]} +primitive-types = {version = "0.13.1", default-features = false} +scale-info = {version = "2.11.5", default-features = false} sp-arithmetic = {version = "26.0.0", default-features = false} sp-crypto-hashing = {version = "0.1.0", default-features = false} substrate-crypto-light = {git = "https://github.com/Alzymologist/substrate-crypto-light", default-features = false, features = ["ecdsa", "ed25519", "sr25519"]} diff --git a/src/storage_data.rs b/src/storage_data.rs index ca7138b..4f35a76 100644 --- a/src/storage_data.rs +++ b/src/storage_data.rs @@ -6,7 +6,7 @@ //! Storage key has prefix built from `prefix` of //! [`PalletStorageMetadata`](frame_metadata::v14::PalletStorageMetadata) and //! `name` of [`StorageEntryMetadata`], both processed as bytes in -//! [`twox_128`](sp_core_hashing::twox_128) and concatenated together. +//! [`twox_128`](sp_crypto_hashing::twox_128) and concatenated together. //! //! There are `Plain` and `Map` variants of [`StorageEntryType`]. //!