mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
391d2f5241
* Add Canvas node as Parachain template * Remove `pallet-contracts` * Point to local Cumulus dependency * Use double quotes instead of single quotes * Get rid of GPL licensing * Remove references to Canvas * Get rid of warnings * Remove GLP-3 License copy-pasta file * Copy in README from `substrate-parachain-template` * Add mention of `polkadot-launch` tool * Add missing screenshot asset * Remove Canvas hidden files and scripts * Rename `template` to `parachain-template` * Remove a few more Canvas references * Add `pallet-template` * Get `pallet-template` compiling * Remove TODOs about Weights * Sort some dependencies * Remove contracts specific const * Change binary name back to `parachain-collator` * RustFmt * Fix mock tests * Purge sneaky whitespace * Add template pallet index to runtime Co-authored-by: Ricardo Rius <9488369+riusricardo@users.noreply.github.com> * Add force authoring to collator `polkadot-launch` config Co-authored-by: Ricardo Rius <9488369+riusricardo@users.noreply.github.com> * Refer README readers to `substrate-parachain-template` * Remove license header in `build.rs` Co-authored-by: Michael Müller <michi@parity.io> * Fix punctuation nitpick Co-authored-by: Michael Müller <michi@parity.io> * Remove unused `lib.rs` file * Add note about Rococo network Co-authored-by: Ricardo Rius <9488369+riusricardo@users.noreply.github.com> Co-authored-by: Michael Müller <michi@parity.io>
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"client/cli",
|
|
"client/consensus/aura",
|
|
"client/consensus/common",
|
|
"client/consensus/relay-chain",
|
|
"client/network",
|
|
"client/pov-recovery",
|
|
"client/service",
|
|
"pallets/aura-ext",
|
|
"pallets/collator-selection",
|
|
"pallets/dmp-queue",
|
|
"pallets/parachain-system",
|
|
"pallets/parachain-system/proc-macro",
|
|
"pallets/session-benchmarking",
|
|
"pallets/xcm",
|
|
"pallets/xcmp-queue",
|
|
"parachain-template/node",
|
|
"parachain-template/runtime",
|
|
"primitives/core",
|
|
"primitives/parachain-inherent",
|
|
"primitives/timestamp",
|
|
"primitives/utility",
|
|
"polkadot-parachains/",
|
|
"polkadot-parachains/pallets/parachain-info",
|
|
"polkadot-parachains/pallets/ping",
|
|
"polkadot-parachains/rococo",
|
|
"polkadot-parachains/shell",
|
|
"polkadot-parachains/parachains-common",
|
|
"polkadot-parachains/statemint",
|
|
"polkadot-parachains/statemine",
|
|
"polkadot-parachains/westmint",
|
|
"test/client",
|
|
"test/relay-sproof-builder",
|
|
"test/relay-validation-worker-provider",
|
|
"test/runtime",
|
|
"test/runtime-upgrade",
|
|
"test/service",
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "unwind"
|