Skip to content
Snippets Groups Projects
Commit be403051 authored by Squirrel's avatar Squirrel Committed by GitHub
Browse files

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: default avatarAndronik <write@reusable.software>
parent f2f5345a
No related merge requests found
Showing
with 67 additions and 61 deletions
......@@ -6,11 +6,17 @@ path = "src/main.rs"
name = "polkadot"
description = "Implementation of a `https://polkadot.network` node in Rust based on the Substrate framework."
license = "GPL-3.0-only"
version = "0.9.33"
rust-version = "1.64.0" # workspace properties
readme = "README.md"
authors.workspace = true
edition.workspace = true
version.workspace = true
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
rust-version = "1.57.0" # custom profiles
readme = "README.md"
repository = "https://github.com/paritytech/polkadot.git"
version = "0.9.33"
[dependencies]
polkadot-cli = { path = "cli", features = [ "kusama-native", "westend-native", "rococo-native" ] }
......@@ -24,7 +30,7 @@ tempfile = "3.2.0"
tokio = "1.22.0"
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
polkadot-core-primitives = { path = "core-primitives" }
[workspace]
members = [
"cli",
......
[package]
name = "polkadot-cli"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Polkadot Relay-chain Client Node"
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[package.metadata.wasm-pack.profile.release]
# `wasm-opt` has some problems on Linux, see
......
[package]
name = "polkadot-core-primitives"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
......
[package]
name = "polkadot-erasure-coding"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
polkadot-primitives = { path = "../primitives" }
......
[package]
name = "erasure_coding_fuzzer"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
polkadot-erasure-coding = { path = ".." }
......
[package]
name = "polkadot-client"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
async-trait = "0.1.57"
......
[package]
name = "polkadot-node-collation-generation"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-approval-voting"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-av-store"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-backing"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-bitfield-signing"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-candidate-validation"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
async-trait = "0.1.57"
......
[package]
name = "polkadot-node-core-chain-api"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-chain-selection"
description = "Chain Selection Subsystem"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-dispute-coordinator"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-parachains-inherent"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-provisioner"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
......
[package]
name = "polkadot-node-core-pvf-checker"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
[package]
name = "polkadot-node-core-pvf"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[[bin]]
name = "puppet_worker"
......
[package]
name = "polkadot-node-core-runtime-api"
version = "0.9.33"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
futures = "0.3.21"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment