mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 22:11:06 +00:00
Node template folders restructuring (#4811)
* Restructure node-template so it is clear that node, runtime, and pallets are separated * Separating to mock and tests * restructuring runtime to top-level * updated release script * updated Cargo.lock
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
[package]
|
||||
authors = ['Anonymous']
|
||||
edition = '2018'
|
||||
name = 'pallet-template'
|
||||
version = '2.0.0'
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
||||
safe-mix = { default-features = false, version = '1.0.0' }
|
||||
|
||||
[dependencies.frame-support]
|
||||
default-features = false
|
||||
version = '2.0.0'
|
||||
path = "../../../../frame/support"
|
||||
|
||||
[dependencies.system]
|
||||
default-features = false
|
||||
package = 'frame-system'
|
||||
version = '2.0.0'
|
||||
path = "../../../../frame/system"
|
||||
|
||||
[dev-dependencies.sp-core]
|
||||
default-features = false
|
||||
version = '2.0.0'
|
||||
path = "../../../../primitives/core"
|
||||
|
||||
[dev-dependencies.sp-io]
|
||||
default-features = false
|
||||
version = '2.0.0'
|
||||
path = "../../../../primitives/io"
|
||||
|
||||
[dev-dependencies.sp-runtime]
|
||||
default-features = false
|
||||
version = '2.0.0'
|
||||
path = "../../../../primitives/runtime"
|
||||
|
||||
[features]
|
||||
default = ['std']
|
||||
std = [
|
||||
'codec/std',
|
||||
'frame-support/std',
|
||||
'safe-mix/std',
|
||||
'system/std'
|
||||
]
|
||||
Reference in New Issue
Block a user