git.delta.rocks / unique-network / refs/commits / 008833a7ebae

difftreelog

source

pallets/scheduler-v2/Cargo.toml1.5 KiBsourcehistory
1[package]2authors = ["Unique Network <support@uniquenetwork.io>"]3description = "Unique Scheduler pallet"4edition = "2021"5homepage = "https://unique.network"6license = "GPLv3"7name = "pallet-unique-scheduler-v2"8readme = "README.md"9repository = "https://github.com/UniqueNetwork/unique-chain"10version = "0.1.0"1112[package.metadata.deppatcher.originals.dev-dependencies]13substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }1415[dependencies]16# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.17codec = { workspace = true, package = "parity-scale-codec" }1819frame-benchmarking = { workspace = true, optional = true }20frame-support = { workspace = true }21frame-system = { workspace = true }22log = { workspace = true }23scale-info = { workspace = true }24sp-core = { workspace = true }25sp-io = { workspace = true }26sp-runtime = { workspace = true }27sp-std = { workspace = true }2829[dev-dependencies]30pallet-preimage = { workspace = true }31substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }3233[features]34default = ["std"]35runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]36std = [37	"codec/std",38	"frame-benchmarking?/std",39	"frame-support/std",40	"frame-system/std",41	"log/std",42	"scale-info/std",43	"sp-core/std",44	"sp-io/std",45	"sp-runtime/std",46	"sp-std/std",47]48try-runtime = ["frame-support/try-runtime"]