Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Scheduler #5374

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ members = [
"frame/offences",
"frame/randomness-collective-flip",
"frame/recovery",
"frame/scheduler",
"frame/scored-pool",
"frame/session",
"frame/session/benchmarking",
Expand Down
35 changes: 35 additions & 0 deletions frame/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "pallet-scheduler"
version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME example pallet"

[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false }
frame-benchmarking = { version = "2.0.0-alpha.4", default-features = false, path = "../benchmarking" }
frame-support = { version = "2.0.0-alpha.4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-alpha.4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/io" }

[dev-dependencies]
sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core", default-features = false }

[features]
default = ["std"]
std = [
"serde",
"codec/std",
"sp-runtime/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"sp-io/std",
"sp-std/std"
]