mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
ecdc94420e
Tagging the release of substrate 2.0 [ci: skip-checks]
51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
[package]
|
|
authors = ['Anonymous']
|
|
edition = '2018'
|
|
name = 'pallet-template'
|
|
version = "2.0.0"
|
|
license = "Unlicense"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME pallet template for defining custom runtime logic."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
|
|
|
|
[dependencies.frame-support]
|
|
default-features = false
|
|
version = "2.0.0"
|
|
path = "../../../../frame/support"
|
|
|
|
[dependencies.frame-system]
|
|
default-features = false
|
|
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',
|
|
'frame-system/std'
|
|
]
|