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

Use the umbrella crate for the parachain template #5991

Merged
merged 14 commits into from
Oct 14, 2024
Prev Previous commit
Next Next commit
fix
  • Loading branch information
serban300 committed Oct 14, 2024
commit 769a54de9ad98a23b8b0f2ebae82cdb33e5618a5
4 changes: 1 addition & 3 deletions templates/parachain/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ codec = { features = ["derive"], workspace = true }
scale-info = { features = ["derive"], workspace = true }

frame = { workspace = true, default-features = false, features = [
"experimental",
"runtime",
] }

[dev-dependencies]
frame = { workspace = true, default-features = false, features = ["experimental"] }

[features]
default = ["std"]
runtime-benchmarks = ["frame/runtime-benchmarks"]
Expand Down
5 changes: 2 additions & 3 deletions templates/parachain/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ serde_json = { workspace = true, default-features = false, features = ["alloc"]
pallet-parachain-template = { workspace = true }

polkadot-sdk = { workspace = true, default-features = false, features = [
"experimental",

"pallet-aura",
"pallet-authorship",
"pallet-balances",
Expand Down Expand Up @@ -68,9 +70,6 @@ polkadot-sdk = { workspace = true, default-features = false, features = [
# Cumulus
cumulus-pallet-parachain-system = { workspace = true }

[dev-dependencies]
polkadot-sdk = { workspace = true, default-features = false, features = ["experimental"] }

[features]
default = ["std"]
std = [
Expand Down
Loading