mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 03:17:59 +00:00
Apply local rebrand updates (compatible with pezkuwi-sdk)
This commit is contained in:
+101
-62
@@ -1,8 +1,8 @@
|
||||
[workspace.package]
|
||||
license = "MIT-0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
homepage = "https://paritytech.github.io/polkadot-sdk/"
|
||||
repository = "https://github.com/paritytech/polkadot-sdk-solochain-template.git"
|
||||
authors = ["PezkuwiChain <admin@pezkuwichain.io>"]
|
||||
homepage = "https://pezkuwichain.github.io/pezkuwi-sdk/"
|
||||
repository = "https://github.com/pezkuwichain/pez-solochain-template.git"
|
||||
edition = "2021"
|
||||
|
||||
[workspace]
|
||||
@@ -13,65 +13,105 @@ members = [
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.lints.rust]
|
||||
suspicious_double_ref_op = { level = "allow", priority = 2 }
|
||||
|
||||
[workspace.lints.clippy]
|
||||
all = { level = "allow", priority = 0 }
|
||||
correctness = { level = "warn", priority = 1 }
|
||||
complexity = { level = "warn", priority = 1 }
|
||||
if-same-then-else = { level = "allow", priority = 2 }
|
||||
zero-prefixed-literal = { level = "allow", priority = 2 }
|
||||
type_complexity = { level = "allow", priority = 2 }
|
||||
nonminimal-bool = { level = "allow", priority = 2 }
|
||||
borrowed-box = { level = "allow", priority = 2 }
|
||||
too-many-arguments = { level = "allow", priority = 2 }
|
||||
needless-lifetimes = { level = "allow", priority = 2 }
|
||||
unnecessary_cast = { level = "allow", priority = 2 }
|
||||
identity-op = { level = "allow", priority = 2 }
|
||||
useless_conversion = { level = "allow", priority = 2 }
|
||||
unit_arg = { level = "allow", priority = 2 }
|
||||
option-map-unit-fn = { level = "allow", priority = 2 }
|
||||
bind_instead_of_map = { level = "allow", priority = 2 }
|
||||
erasing_op = { level = "allow", priority = 2 }
|
||||
eq_op = { level = "allow", priority = 2 }
|
||||
while_immutable_condition = { level = "allow", priority = 2 }
|
||||
needless_option_as_deref = { level = "allow", priority = 2 }
|
||||
derivable_impls = { level = "allow", priority = 2 }
|
||||
stable_sort_primitive = { level = "allow", priority = 2 }
|
||||
extra-unused-type-parameters = { level = "allow", priority = 2 }
|
||||
default_constructed_unit_structs = { level = "allow", priority = 2 }
|
||||
self-named-module-files = { level = "allow", priority = 2 }
|
||||
|
||||
[workspace.dependencies]
|
||||
solochain-template-runtime = { path = "./runtime", default-features = false }
|
||||
pallet-template = { path = "./pallets/template", default-features = false }
|
||||
clap = { version = "4.5.13" }
|
||||
frame-benchmarking-cli = { version = "47.0.0", default-features = false }
|
||||
frame-metadata-hash-extension = { version = "0.8.0", default-features = false }
|
||||
frame-system = { version = "40.1.0", default-features = false }
|
||||
futures = { version = "0.3.31" }
|
||||
jsonrpsee = { version = "0.24.3" }
|
||||
pallet-transaction-payment = { version = "40.0.0", default-features = false }
|
||||
pallet-transaction-payment-rpc = { version = "43.0.0", default-features = false }
|
||||
sc-basic-authorship = { version = "0.49.0", default-features = false }
|
||||
sc-cli = { version = "0.51.0", default-features = false }
|
||||
sc-client-api = { version = "39.0.0", default-features = false }
|
||||
sc-consensus = { version = "0.48.0", default-features = false }
|
||||
sc-consensus-aura = { version = "0.49.0", default-features = false }
|
||||
sc-consensus-grandpa = { version = "0.34.0", default-features = false }
|
||||
sc-executor = { version = "0.42.0", default-features = false }
|
||||
sc-network = { version = "0.49.1", default-features = false }
|
||||
sc-offchain = { version = "44.0.0", default-features = false }
|
||||
sc-service = { version = "0.50.0", default-features = false }
|
||||
sc-telemetry = { version = "28.1.0", default-features = false }
|
||||
sc-transaction-pool = { version = "39.0.0", default-features = false }
|
||||
sc-transaction-pool-api = { version = "39.0.0", default-features = false }
|
||||
sp-api = { version = "36.0.1", default-features = false }
|
||||
sp-block-builder = { version = "36.0.0", default-features = false }
|
||||
sp-blockchain = { version = "39.0.0", default-features = false }
|
||||
sp-consensus-aura = { version = "0.42.0", default-features = false }
|
||||
sp-core = { version = "36.1.0", default-features = false }
|
||||
sp-genesis-builder = { version = "0.17.0", default-features = false }
|
||||
sp-inherents = { version = "36.0.0", default-features = false }
|
||||
sp-io = { version = "40.0.1", default-features = false }
|
||||
sp-keyring = { version = "41.0.0", default-features = false }
|
||||
sp-runtime = { version = "41.1.0", default-features = false }
|
||||
sp-timestamp = { version = "36.0.0", default-features = false }
|
||||
substrate-frame-rpc-system = { version = "43.0.0", default-features = false }
|
||||
substrate-build-script-utils = { version = "11.0.0", default-features = false }
|
||||
codec = { version = "3.7.4", default-features = false, package = "parity-scale-codec" }
|
||||
frame-benchmarking = { version = "40.0.0", default-features = false }
|
||||
frame-executive = { version = "40.0.0", default-features = false }
|
||||
frame-support = { version = "40.1.0", default-features = false }
|
||||
frame-system-benchmarking = { version = "40.0.0", default-features = false }
|
||||
frame-system-rpc-runtime-api = { version = "36.0.0", default-features = false }
|
||||
frame-try-runtime = { version = "0.46.0", default-features = false }
|
||||
pallet-aura = { version = "39.0.0", default-features = false }
|
||||
pallet-balances = { version = "41.1.0", default-features = false }
|
||||
pallet-grandpa = { version = "40.0.0", default-features = false }
|
||||
pallet-sudo = { version = "40.0.0", default-features = false }
|
||||
pallet-timestamp = { version = "39.0.0", default-features = false }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "40.0.0", default-features = false }
|
||||
scale-info = { version = "2.11.6", default-features = false }
|
||||
serde_json = { version = "1.0.132", default-features = false }
|
||||
sp-consensus-grandpa = { version = "23.1.0", default-features = false }
|
||||
sp-offchain = { version = "36.0.0", default-features = false }
|
||||
sp-session = { version = "38.1.0", default-features = false }
|
||||
sp-storage = { version = "22.0.0", default-features = false }
|
||||
sp-transaction-pool = { version = "36.0.0", default-features = false }
|
||||
sp-version = { version = "39.0.0", default-features = false }
|
||||
substrate-wasm-builder = { version = "26.0.1", default-features = false }
|
||||
# Local crates
|
||||
pez-solochain-template-runtime = { path = "./runtime", default-features = false }
|
||||
pezpallet-template = { path = "./pallets/template", default-features = false }
|
||||
|
||||
# External crates
|
||||
clap = { version = "4.5" }
|
||||
codec = { version = "3.7", default-features = false, package = "parity-scale-codec" }
|
||||
futures = { version = "0.3" }
|
||||
jsonrpsee = { version = "0.24" }
|
||||
log = { version = "0.4", default-features = false }
|
||||
scale-info = { version = "2.11", default-features = false }
|
||||
serde_json = { version = "1.0", default-features = false }
|
||||
|
||||
# Pezkuwi SDK dependencies (path to local pezkuwi-sdk - update to git/crates.io when published)
|
||||
pezframe-benchmarking = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/benchmarking", default-features = false }
|
||||
pezframe-benchmarking-cli = { path = "../pezkuwi-sdk/bizinikiwi/utils/pezframe/benchmarking-cli", default-features = false }
|
||||
pezframe-executive = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/executive", default-features = false }
|
||||
pezframe-metadata-hash-extension = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/metadata-hash-extension", default-features = false }
|
||||
pezframe-support = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/support", default-features = false }
|
||||
pezframe-system = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/system", default-features = false }
|
||||
pezframe-system-benchmarking = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/system/benchmarking", default-features = false }
|
||||
pezframe-system-rpc-runtime-api = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/system/rpc/runtime-api", default-features = false }
|
||||
pezframe-try-runtime = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/try-runtime", default-features = false }
|
||||
|
||||
pezpallet-aura = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-aura", default-features = false }
|
||||
pezpallet-balances = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-balances", default-features = false }
|
||||
pezpallet-grandpa = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-grandpa", default-features = false }
|
||||
pezpallet-sudo = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-sudo", default-features = false }
|
||||
pezpallet-timestamp = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-timestamp", default-features = false }
|
||||
pezpallet-transaction-payment = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-transaction-payment", default-features = false }
|
||||
pezpallet-transaction-payment-rpc = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-transaction-payment/rpc", default-features = false }
|
||||
pezpallet-transaction-payment-rpc-runtime-api = { path = "../pezkuwi-sdk/bizinikiwi/pezframe/pezpallet-transaction-payment/rpc/runtime-api", default-features = false }
|
||||
|
||||
pezsc-basic-authorship = { path = "../pezkuwi-sdk/bizinikiwi/client/basic-authorship", default-features = false }
|
||||
pezsc-cli = { path = "../pezkuwi-sdk/bizinikiwi/client/cli", default-features = false }
|
||||
pezsc-client-api = { path = "../pezkuwi-sdk/bizinikiwi/client/api", default-features = false }
|
||||
pezsc-consensus = { path = "../pezkuwi-sdk/bizinikiwi/client/consensus/common", default-features = false }
|
||||
pezsc-consensus-aura = { path = "../pezkuwi-sdk/bizinikiwi/client/consensus/aura", default-features = false }
|
||||
pezsc-consensus-grandpa = { path = "../pezkuwi-sdk/bizinikiwi/client/consensus/grandpa", default-features = false }
|
||||
pezsc-executor = { path = "../pezkuwi-sdk/bizinikiwi/client/executor", default-features = false }
|
||||
pezsc-network = { path = "../pezkuwi-sdk/bizinikiwi/client/network", default-features = false }
|
||||
pezsc-offchain = { path = "../pezkuwi-sdk/bizinikiwi/client/offchain", default-features = false }
|
||||
pezsc-service = { path = "../pezkuwi-sdk/bizinikiwi/client/service", default-features = false }
|
||||
pezsc-telemetry = { path = "../pezkuwi-sdk/bizinikiwi/client/telemetry", default-features = false }
|
||||
pezsc-transaction-pool = { path = "../pezkuwi-sdk/bizinikiwi/client/transaction-pool", default-features = false }
|
||||
pezsc-transaction-pool-api = { path = "../pezkuwi-sdk/bizinikiwi/client/transaction-pool/api", default-features = false }
|
||||
|
||||
pezsp-api = { path = "../pezkuwi-sdk/bizinikiwi/primitives/api", default-features = false }
|
||||
pezsp-block-builder = { path = "../pezkuwi-sdk/bizinikiwi/primitives/block-builder", default-features = false }
|
||||
pezsp-blockchain = { path = "../pezkuwi-sdk/bizinikiwi/primitives/blockchain", default-features = false }
|
||||
pezsp-consensus-aura = { path = "../pezkuwi-sdk/bizinikiwi/primitives/consensus/aura", default-features = false }
|
||||
pezsp-consensus-grandpa = { path = "../pezkuwi-sdk/bizinikiwi/primitives/consensus/grandpa", default-features = false }
|
||||
pezsp-core = { path = "../pezkuwi-sdk/bizinikiwi/primitives/core", default-features = false }
|
||||
pezsp-genesis-builder = { path = "../pezkuwi-sdk/bizinikiwi/primitives/genesis-builder", default-features = false }
|
||||
pezsp-inherents = { path = "../pezkuwi-sdk/bizinikiwi/primitives/inherents", default-features = false }
|
||||
pezsp-io = { path = "../pezkuwi-sdk/bizinikiwi/primitives/io", default-features = false }
|
||||
pezsp-keyring = { path = "../pezkuwi-sdk/bizinikiwi/primitives/keyring", default-features = false }
|
||||
pezsp-offchain = { path = "../pezkuwi-sdk/bizinikiwi/primitives/offchain", default-features = false }
|
||||
pezsp-runtime = { path = "../pezkuwi-sdk/bizinikiwi/primitives/runtime", default-features = false }
|
||||
pezsp-session = { path = "../pezkuwi-sdk/bizinikiwi/primitives/session", default-features = false }
|
||||
pezsp-storage = { path = "../pezkuwi-sdk/bizinikiwi/primitives/storage", default-features = false }
|
||||
pezsp-timestamp = { path = "../pezkuwi-sdk/bizinikiwi/primitives/timestamp", default-features = false }
|
||||
pezsp-transaction-pool = { path = "../pezkuwi-sdk/bizinikiwi/primitives/transaction-pool", default-features = false }
|
||||
pezsp-version = { path = "../pezkuwi-sdk/bizinikiwi/primitives/version", default-features = false }
|
||||
|
||||
bizinikiwi-build-script-utils = { path = "../pezkuwi-sdk/bizinikiwi/utils/build-script-utils", default-features = false }
|
||||
bizinikiwi-frame-rpc-system = { path = "../pezkuwi-sdk/bizinikiwi/utils/pezframe/rpc/system", default-features = false }
|
||||
bizinikiwi-wasm-builder = { path = "../pezkuwi-sdk/bizinikiwi/utils/wasm-builder", default-features = false }
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
@@ -81,4 +121,3 @@ panic = "unwind"
|
||||
codegen-units = 1
|
||||
inherits = "release"
|
||||
lto = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user