Skip to content

Commit 3471d3b

Browse files
authored
Fix build profiles (paritytech#1229)
* Fix build profiles Closes paritytech#1155 Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <[email protected]> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
1 parent c388180 commit 3471d3b

File tree

269 files changed

+798
-800
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+798
-800
lines changed

substrate/bin/node-template/node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "4.0.0-dev"
44
description = "A fresh FRAME-based Substrate node, ready for hacking."
55
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
66
homepage = "https://substrate.io/"
7-
edition = "2021"
7+
edition.workspace = true
88
license = "MIT-0"
99
publish = false
1010
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"

substrate/bin/node-template/pallets/template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "4.0.0-dev"
44
description = "FRAME pallet template for defining custom runtime logic."
55
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
66
homepage = "https://substrate.io"
7-
edition = "2021"
7+
edition.workspace = true
88
license = "MIT-0"
99
publish = false
1010
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"

substrate/bin/node-template/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "4.0.0-dev"
44
description = "A fresh FRAME-based Substrate node, ready for hacking."
55
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
66
homepage = "https://substrate.io/"
7-
edition = "2021"
7+
edition.workspace = true
88
license = "MIT-0"
99
publish = false
1010
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"

substrate/bin/node/bench/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "node-bench"
33
version = "0.9.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node integration benchmarks."
6-
edition = "2021"
6+
edition.workspace = true
77
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
88
homepage = "https://substrate.io"
9-
repository = "https://github.com/paritytech/substrate/"
9+
repository.workspace = true
1010
publish = false
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

substrate/bin/node/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "node-cli"
33
version = "3.0.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Generic Substrate node implementation in Rust."
66
build = "build.rs"
7-
edition = "2021"
7+
edition.workspace = true
88
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
99
default-run = "substrate-node"
1010
homepage = "https://substrate.io"
11-
repository = "https://github.com/paritytech/substrate/"
11+
repository.workspace = true
1212
publish = false
1313

1414
[package.metadata.wasm-pack.profile.release]

substrate/bin/node/executor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "node-executor"
33
version = "3.0.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node implementation in Rust."
6-
edition = "2021"
6+
edition.workspace = true
77
license = "Apache-2.0"
88
homepage = "https://substrate.io"
9-
repository = "https://github.com/paritytech/substrate/"
9+
repository.workspace = true
1010
publish = false
1111

1212
[package.metadata.docs.rs]

substrate/bin/node/inspect/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "node-inspect"
33
version = "0.9.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node block inspection tool."
6-
edition = "2021"
6+
edition.workspace = true
77
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
88
homepage = "https://substrate.io"
9-
repository = "https://github.com/paritytech/substrate/"
9+
repository.workspace = true
1010
publish = false
1111

1212
[package.metadata.docs.rs]

substrate/bin/node/primitives/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "node-primitives"
33
version = "2.0.0"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node low-level primitives."
6-
edition = "2021"
6+
edition.workspace = true
77
license = "Apache-2.0"
88
homepage = "https://substrate.io"
9-
repository = "https://github.com/paritytech/substrate/"
9+
repository.workspace = true
1010
publish = false
1111

1212
[package.metadata.docs.rs]

substrate/bin/node/rpc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "node-rpc"
33
version = "3.0.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node rpc methods."
6-
edition = "2021"
6+
edition.workspace = true
77
license = "Apache-2.0"
88
homepage = "https://substrate.io"
9-
repository = "https://github.com/paritytech/substrate/"
9+
repository.workspace = true
1010
publish = false
1111

1212
[package.metadata.docs.rs]

substrate/bin/node/runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "kitchensink-runtime"
33
version = "3.0.0-dev"
4-
authors = ["Parity Technologies <[email protected]>"]
4+
authors.workspace = true
55
description = "Substrate node kitchensink runtime."
6-
edition = "2021"
6+
edition.workspace = true
77
build = "build.rs"
88
license = "Apache-2.0"
99
homepage = "https://substrate.io"
10-
repository = "https://github.com/paritytech/substrate/"
10+
repository.workspace = true
1111
publish = false
1212

1313
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)