git.delta.rocks / unique-network / refs/commits / fa01f9a87ad6

difftreelog

source

pallets/scheduler-v2/Cargo.toml2.1 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[dependencies]13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }14frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17log = { version = "0.4.17", default-features = false }18scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2324[dev-dependencies]25pallet-preimage = { 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" }27substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2829[features]30default = ["std"]31runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]32std = [33	"codec/std",34	"frame-benchmarking?/std",35	"frame-support/std",36	"frame-system/std",37	"log/std",38	"scale-info/std",39	"sp-core/std",40	"sp-io/std",41	"sp-runtime/std",42	"sp-std/std",43]44try-runtime = ["frame-support/try-runtime"]