From 0e5b3f214ab6f252d8537097b73a6f288389a10a Mon Sep 17 00:00:00 2001 From: "Alisher A. Khassanov" Date: Tue, 26 Sep 2023 20:56:33 +0600 Subject: [PATCH] Add authors and edition to workspace Cargo.toml Remove reviewer's comments on authors sections. --- Cargo.toml | 2 ++ node/Cargo.toml | 5 ++--- runtime/Cargo.toml | 5 ++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b07189f..f3da1b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,6 @@ [workspace.package] +authors = ["Metaquity Network "] +edition = "2021" repository = "https://github.com/Metaquity-Network/metaquity-network-node" [workspace] diff --git a/node/Cargo.toml b/node/Cargo.toml index fb09829..4bef04f 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -2,10 +2,9 @@ name = "metaquity-network" version = "0.1.0" description = "Metaquity Network is the world's first permissioned blockchain and DeFi protocol for Alternative Real World Assets (ARWA)." -# SBP-M1 review: add metaquity as author -authors = ["Metaquity Network "] +authors.workspace = true +edition.workspace = true homepage = "https://www.metaquity.xyz/" -edition = "2021" license = "Unlicense" publish = false repository.workspace = true diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 608180e..7388b7a 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,10 +2,9 @@ name = "metaquity-network-runtime" version = "0.1.0" description = "Metaquity Network runtime." -# SBP-M1 review: add metaquity as author -authors = ["Metaquity Network "] +authors.workspace = true +edition.workspace = true homepage = "https://www.metaquity.xyz/" -edition = "2021" license = "Unlicense" publish = false repository.workspace = true