Skip to content

Commit 5bb5129

Browse files
ggwpeznathanwhit
authored andcommitted
Include node-template-release in workspace (paritytech#14103)
* Add node-template-release to workspace Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Remove empty workspace Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Manually update deps Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update Cargo.lock Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update .gitignore Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update license Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
1 parent 53b70ee commit 5bb5129

File tree

5 files changed

+72
-9
lines changed

5 files changed

+72
-9
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,5 @@ rls*.log
2424
.cargo-remote.toml
2525
*.bin
2626
*.iml
27-
scripts/ci/node-template-release/Cargo.lock
2827
bin/node-template/Cargo.lock
2928
substrate.code-workspace

Cargo.lock

Lines changed: 64 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ members = [
236236
"primitives/version/proc-macro",
237237
"primitives/wasm-interface",
238238
"primitives/weights",
239+
"scripts/ci/node-template-release",
239240
"test-utils",
240241
"test-utils/client",
241242
"test-utils/derive",

scripts/ci/deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ exceptions = [
4040
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "node-bench" },
4141
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "node-cli" },
4242
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "node-inspect" },
43+
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "node-template-release" },
4344
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "node-testing" },
4445
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "sc-authority-discovery" },
4546
{ allow = ["GPL-3.0 WITH Classpath-exception-2.0"], name = "sc-basic-authorship" },

scripts/ci/node-template-release/Cargo.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@ name = "node-template-release"
33
version = "3.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
6-
license = "GPL-3.0"
6+
license = "GPL-3.0 WITH Classpath-exception-2.0"
77
homepage = "https://substrate.io"
88
publish = false
99

1010
[package.metadata.docs.rs]
1111
targets = ["x86_64-unknown-linux-gnu"]
1212

1313
[dependencies]
14-
clap = { version = "4.0.9", features = ["derive"] }
14+
clap = { version = "4.2.5", features = ["derive"] }
1515
flate2 = "1.0"
16-
fs_extra = "1"
17-
git2 = "0.8"
18-
glob = "0.2"
16+
fs_extra = "1.3"
17+
git2 = "0.16"
18+
glob = "0.3"
1919
tar = "0.4"
2020
tempfile = "3"
21-
toml = "0.4"
22-
23-
[workspace]
21+
toml = "0.7"

0 commit comments

Comments
 (0)