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

difftreelog

source

pallets/scheduler/Cargo.toml2.0 KiBsourcehistory
1[package]2name = "pallet-unq-scheduler"3version = "3.0.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"6license = "Unlicense"7homepage = "https://substrate.dev"8repository = "https://github.com/paritytech/substrate/"9description = "FRAME example pallet"10readme = "README.md"1112[dependencies]13serde = { version = "1.0.130", default-features = false }14codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false }15scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }16frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }17frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }18sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }19sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }20sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }21frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }2223up-sponsorship = { default-features = false, path = "../../primitives/sponsorship", version = "0.1.0" }24log = { version = "0.4.14", default-features = false }2526[dev-dependencies]27sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }28substrate-test-utils = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }2930[features]31default = ["std"]32std = [33	"codec/std",34	"sp-runtime/std",35	"frame-benchmarking/std",36	"frame-support/std",37	"frame-system/std",38	"up-sponsorship/std",39	"sp-io/std",40	"sp-std/std",41	"log/std",42]43runtime-benchmarks = [44	"frame-benchmarking",45	"frame-support/runtime-benchmarks",46	"frame-system/runtime-benchmarks",47]48#try-runtime = ["frame-support/try-runtime"]