diff --git a/frame/cosmos/x/auth/signing/Cargo.toml b/frame/cosmos/x/auth/signing/Cargo.toml index 802b23e..30acdda 100644 --- a/frame/cosmos/x/auth/signing/Cargo.toml +++ b/frame/cosmos/x/auth/signing/Cargo.toml @@ -10,28 +10,26 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] cosmos-sdk-proto = { workspace = true, default-features = false } -serde_json = { workspace = true, default-features = false } - pallet-cosmos-types = { workspace = true, default-features = false } pallet-cosmos-x-auth-migrations = { workspace = true, default-features = false } pallet-cosmos-x-bank-types = { workspace = true, default-features = false } pallet-cosmos-x-wasm-types = { workspace = true, default-features = false } +serde_json = { workspace = true, default-features = false } [dev-dependencies] base64ct = { workspace = true, default-features = false } hex = { workspace = true, default-features = false } - sp-core = { workspace = true, default-features = false } [features] default = ["std"] std = [ "cosmos-sdk-proto/std", - "serde_json/std", "pallet-cosmos-types/std", "pallet-cosmos-x-auth-migrations/std", "pallet-cosmos-x-bank-types/std", "pallet-cosmos-x-wasm-types/std", + "serde_json/std", "base64ct/std", "hex/std", "sp-core/std", diff --git a/frame/cosmos/x/auth/signing/src/lib.rs b/frame/cosmos/x/auth/signing/src/lib.rs index 2f5e5a3..845a87e 100644 --- a/frame/cosmos/x/auth/signing/src/lib.rs +++ b/frame/cosmos/x/auth/signing/src/lib.rs @@ -17,7 +17,6 @@ // along with this program. If not, see . #![cfg_attr(not(feature = "std"), no_std)] -#![allow(clippy::comparison_chain, clippy::large_enum_variant)] extern crate alloc;