Set polkadot version in one place (#6095)

* rust 1.64 enables workspace properties

* add edition, repository and authors.

* of course, update the version in one place.

Co-authored-by: Andronik <write@reusable.software>
This commit is contained in:
Squirrel
2022-12-05 11:36:16 +00:00
committed by GitHub
parent f2f5345ac2
commit be403051dc
84 changed files with 260 additions and 253 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
[package]
name = "polkadot-parachain"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Types and utilities for creating and working with parachains"
edition = "2021"
authors.workspace = true
edition.workspace = true
version.workspace = true
[dependencies]
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
@@ -1,9 +1,9 @@
[package]
name = "test-parachains"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Integration tests using the test-parachains"
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
@@ -1,10 +1,10 @@
[package]
name = "test-parachain-adder"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain which adds to a number as its state transition"
edition = "2021"
build = "build.rs"
edition.workspace = true
version.workspace = true
authors.workspace = true
[dependencies]
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
@@ -1,9 +1,9 @@
[package]
name = "test-parachain-adder-collator"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Collator for the adder test parachain"
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[[bin]]
name = "adder-collator"
@@ -1,10 +1,10 @@
[package]
name = "test-parachain-halt"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain which executes forever"
edition = "2021"
build = "build.rs"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
@@ -1,10 +1,10 @@
[package]
name = "test-parachain-undying"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain for zombienet integration tests"
edition = "2021"
build = "build.rs"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
@@ -1,9 +1,9 @@
[package]
name = "test-parachain-undying-collator"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Collator for the undying test parachain"
edition = "2021"
edition.workspace = true
version.workspace = true
authors.workspace = true
[[bin]]
name = "undying-collator"