From d0a8f1b2250c5114dbb0879f1bd373e531e4bb58 Mon Sep 17 00:00:00 2001 From: pgherveou Date: Tue, 14 Nov 2023 09:55:59 +0100 Subject: [PATCH] update cargo.toml --- Cargo.toml | 1 + node/Cargo.toml | 12 ++++++------ runtime/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 23bc0ac..8224e08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [workspace.package] authors = ["anonymous"] edition = "2021" +version = "0.34.0" license = "Unlicense" homepage = "https://github.com/paritytech/substrate-contracts-node" repository = "https://github.com/paritytech/substrate-contracts-node" diff --git a/node/Cargo.toml b/node/Cargo.toml index 0d0c17a..70b2258 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "contracts-node" -version = "0.33.0" -authors = ["Parity Technologies "] +version.workspace = true +authors.workspace = true description = "Substrate node configured for smart contracts via `pallet-contracts`." -edition = "2021" -license = "Unlicense" +edition.workspace = true +license.workspace = true build = "build.rs" -homepage = "https://github.com/paritytech/substrate-contracts-node" -repository = "https://github.com/paritytech/substrate-contracts-node" +homepage.workspace = true +repository.workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 8cf6447..e17ec7e 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contracts-node-runtime" -version = "0.33.0" +version.workspace = true authors.workspace = true edition.workspace = true description = "Runtime configured for smart contracts via `pallet-contracts`."