From 52a9f2772a782b7696fccc6ea8d7d38cb91d7b1e Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Sat, 16 Nov 2024 13:46:04 +0700 Subject: [PATCH] chore: resolve feedback --- pallets/nfts/Cargo.toml | 11 ++++++----- pallets/nfts/runtime-api/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pallets/nfts/Cargo.toml b/pallets/nfts/Cargo.toml index f23b50f0..bef584b8 100644 --- a/pallets/nfts/Cargo.toml +++ b/pallets/nfts/Cargo.toml @@ -1,6 +1,6 @@ [package] -authors.workspace = true -description = "Fork of FRAME NFTs pallet (polkadot v1.15.0)" +authors = [ "Parity Technologies ", "R0GUE " ] +description = "Fork of FRAME NFTs pallet" edition.workspace = true homepage = "https://substrate.io" license.workspace = true @@ -9,7 +9,6 @@ readme = "README.md" repository.workspace = true version = "31.0.0" - [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] @@ -28,8 +27,8 @@ sp-io.workspace = true sp-runtime.workspace = true [dev-dependencies] -pallet-balances = { default-features = true, workspace = true } -sp-keystore = { default-features = true, workspace = true } +pallet-balances.workspace = true +sp-keystore.workspace = true [features] default = [ "std" ] @@ -46,9 +45,11 @@ std = [ "frame-support/std", "frame-system/std", "log/std", + "pallet-balances/std", "scale-info/std", "sp-core/std", "sp-io/std", + "sp-keystore/std", "sp-runtime/std", ] try-runtime = [ diff --git a/pallets/nfts/runtime-api/Cargo.toml b/pallets/nfts/runtime-api/Cargo.toml index 17fd68f2..503642ef 100644 --- a/pallets/nfts/runtime-api/Cargo.toml +++ b/pallets/nfts/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] -authors.workspace = true -description = "Runtime API for the FRAME NFTs pallet. (polkadot v1.15.0)" +authors = [ "Parity Technologies ", "R0GUE " ] +description = "Runtime API for the FRAME NFTs pallet." edition.workspace = true homepage = "https://substrate.io" license = "Apache-2.0"