From 11977d16a2e9311e9b2beaf8e304feacad62eef5 Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:24:34 +0700 Subject: [PATCH] fix: formatting --- pallets/nfts/runtime-api/Cargo.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pallets/nfts/runtime-api/Cargo.toml b/pallets/nfts/runtime-api/Cargo.toml index 51aac0f9..17fd68f2 100644 --- a/pallets/nfts/runtime-api/Cargo.toml +++ b/pallets/nfts/runtime-api/Cargo.toml @@ -1,25 +1,25 @@ [package] -name = "pallet-nfts-runtime-api" -version = "23.0.0" authors.workspace = true +description = "Runtime API for the FRAME NFTs pallet. (polkadot v1.15.0)" edition.workspace = true -license = "Apache-2.0" homepage = "https://substrate.io" -repository.workspace = true -description = "Runtime API for the FRAME NFTs pallet. (polkadot v1.15.0)" +license = "Apache-2.0" +name = "pallet-nfts-runtime-api" readme = "README.md" +repository.workspace = true +version = "23.0.0" [lints] workspace = true [package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu"] +targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { features = ["derive"], workspace = true } +codec = { features = [ "derive" ], workspace = true } pallet-nfts.workspace = true sp-api.workspace = true [features] -default = ["std"] -std = ["codec/std", "pallet-nfts/std", "sp-api/std"] +default = [ "std" ] +std = [ "codec/std", "pallet-nfts/std", "sp-api/std" ]