mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
8db7ec9cc9
* all reverences of substrate.dev replaced with *correct* docs.substrate.io links * fix links in non-cargo files, errors in replace * homepage https://substrate.io * cargo +nightly fmt * FMT Co-authored-by: Bastian Köcher <info@kchr.de>
47 lines
1.6 KiB
TOML
47 lines
1.6 KiB
TOML
[package]
|
|
name = "pallet-scheduler"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Unlicense"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME example pallet"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
|
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" }
|
|
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" }
|
|
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" }
|
|
log = { version = "0.4.14", default-features = false }
|
|
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { version = "4.0.0-dev", path = "../../primitives/core", default-features = false }
|
|
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-io/std",
|
|
"sp-std/std",
|
|
"log/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|