Skip to content

Commit

Permalink
fix: in pallet template Cargo use same dependencies versions as base-…
Browse files Browse the repository at this point in the history
…parachain
  • Loading branch information
AlexD10S committed Mar 12, 2024
1 parent aed5436 commit 1f49718
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/pallet/Cargo.templ
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }

# Substrate
frame-benchmarking = { version = "26.0.0", default-features = false, optional = true}
frame-support = { version = "26.0.0", default-features = false}
frame-system = { version = "26.0.0", default-features = false}
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1", default-features = false }
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1", default-features = false }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1", default-features = false }

[dev-dependencies]
serde = { version = "1.0.188" }

# Substrate
sp-core = { version = "26.0.0", default-features = false }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1", default-features = false }
# sp-io = { version = "28.0.0", default-features = false}
sp-runtime = { version = "29.0.0", default-features = false}
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.7.1", default-features = false }

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

0 comments on commit 1f49718

Please sign in to comment.