mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
edf73199ab
* Bump versions of sp-core and dependencies to v4.0.0 * Update references from `4.0.0-dev` –> `4.0.0` * Funny whitespace * Funny whitespace 2 * Prepare `sp-runtime` for publication
47 lines
1.7 KiB
TOML
47 lines
1.7 KiB
TOML
[package]
|
|
name = "pallet-example-basic"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Unlicense"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME example pallet"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
|
log = { version = "0.4.14", default-features = false }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking", optional = true }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
|
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../balances" }
|
|
sp-io = { version = "4.0.0", default-features = false, path = "../../../primitives/io" }
|
|
sp-runtime = { version = "4.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { version = "4.1.0-dev", path = "../../../primitives/core", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-balances/std",
|
|
"scale-info/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std"
|
|
]
|
|
runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"]
|
|
try-runtime = ["frame-support/try-runtime"]
|