git.delta.rocks / unique-network / refs/commits / 91e514bdbb72

difftreelog

source

pallets/scheduler-v2/Cargo.toml2.1 KiBsourcehistory
1[package]2name = "pallet-unique-scheduler-v2"3version = "0.1.0"4authors = ["Unique Network <support@uniquenetwork.io>"]5edition = "2021"6license = "GPLv3"7homepage = "https://unique.network"8repository = "https://github.com/UniqueNetwork/unique-chain"9description = "Unique Scheduler pallet"10readme = "README.md"1112[dependencies]13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [14	"derive",15] }16log = { version = "0.4.17", default-features = false }17scale-info = { version = "2.1.1", default-features = false, features = [18	"derive",19] }20frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2728[dev-dependencies]29pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }30sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }31substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3233[features]34default = ["std"]35runtime-benchmarks = [36	"frame-benchmarking",37	"frame-support/runtime-benchmarks",38	"frame-system/runtime-benchmarks",39]40std = [41	"codec/std",42	"frame-benchmarking?/std",43	"frame-support/std",44	"frame-system/std",45	"log/std",46	"scale-info/std",47	"sp-io/std",48	"sp-runtime/std",49	"sp-std/std",50	"sp-core/std",51]52try-runtime = ["frame-support/try-runtime"]