Skip to content

Commit

Permalink
Merge pull request #6 from r0gue-io/pw/chore-update-manifest-and-name
Browse files Browse the repository at this point in the history
chore: update cargo manifests, rename from template to pop and reset version
  • Loading branch information
evilrobot-01 authored Feb 24, 2024
2 parents 024e331 + 713027a commit 6129b8d
Show file tree
Hide file tree
Showing 18 changed files with 174 additions and 453 deletions.
16 changes: 15 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
target/**
# Rust directories
**/target

# MacOS
**/.DS_Store

# Node
**/node_modules

# Code Editors / IDEs
.vscode
.idea

# Binaries
**/bin/
245 changes: 114 additions & 131 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 4 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
panic = "unwind"

[workspace.package]
authors = ["Anonymous"]
authors = ["R0GUE <go@r0gue.io>"]
edition = "2021"
homepage = "https://substrate.io"
homepage = "https://r0gue.io"
license = "Unlicense"
repository = "https://github.com/paritytech/extended-parachain-template/"
repository = "https://github.com/r0gue-io/pop-node/"

[workspace]
members = [
"node",
"pallets/*",
"runtime",
]
resolver = "2"
Expand All @@ -28,14 +27,12 @@ jsonrpsee = { version = "0.20.3", features = ["server"] }
futures = "0.3.28"
serde_json = "1.0.111"


# Build
substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1" }
substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1" }

# Local
pallet-parachain-template = { path = "./pallets/template", default-features = false }
parachain-template-runtime = { path = "./runtime" }
pop-runtime = { path = "./runtime" }

# Substrate
sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1" }
Expand Down
12 changes: 6 additions & 6 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "parachain-template-node"
name = "pop-node"
version = "0.1.0"
authors = ["Anonymous"]
authors = { workspace = true }
description = "A new Cumulus FRAME-based Substrate Node, ready for hacking together a parachain."
license = "Unlicense"
homepage = "https://substrate.io"
homepage = { workspace = true }
repository.workspace = true
edition.workspace = true
build = "build.rs"
Expand All @@ -20,7 +20,7 @@ futures = { workspace = true }
serde_json = { workspace = true }

# Local
parachain-template-runtime = { workspace = true }
pop-runtime = { workspace = true }

# Substrate
frame-benchmarking = { workspace = true }
Expand Down Expand Up @@ -80,14 +80,14 @@ runtime-benchmarks = [
"cumulus-primitives-core/runtime-benchmarks",
"frame-benchmarking-cli/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"parachain-template-runtime/runtime-benchmarks",
"pop-runtime/runtime-benchmarks",
"polkadot-cli/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"parachain-template-runtime/try-runtime",
"pop-runtime/try-runtime",
"polkadot-cli/try-runtime",
"sp-runtime/try-runtime",
]
Loading

0 comments on commit 6129b8d

Please sign in to comment.