Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update cargo manifests, rename from template to pop and reset version #6

Merged
merged 10 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>"]
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