Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
chore: Adjust dependencies orders in pallet-cosmos-x-auth-signing Car…
Browse files Browse the repository at this point in the history
…go.toml
  • Loading branch information
code0xff committed Sep 10, 2024
1 parent 5641462 commit e8996e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions frame/cosmos/x/auth/signing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion frame/cosmos/x/auth/signing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::comparison_chain, clippy::large_enum_variant)]

extern crate alloc;

Expand Down

0 comments on commit e8996e8

Please sign in to comment.