git.delta.rocks / unique-network / refs/commits / 3fa58894bbf0

difftreelog

source

pallets/scheduler/Cargo.toml2.2 KiBsourcehistory
1[package]2name = "pallet-unique-scheduler"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]13serde = { version = "1.0.130", default-features = false }14codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false }15scale-info = { version = "2.0.1", default-features = false, features = [16	"derive",17] }1819frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }20frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }21sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }22sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }23sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.24' }25frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }2627up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.24" }28log = { version = "0.4.14", default-features = false }2930[dev-dependencies]31sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }32substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }3334[features]35default = ["std"]36std = [37	"codec/std",38	"sp-runtime/std",39	"frame-benchmarking/std",40	"frame-support/std",41	"frame-system/std",42	"up-sponsorship/std",43	"sp-io/std",44	"sp-std/std",45	"sp-core/std",46	"log/std",47]48runtime-benchmarks = [49	"frame-benchmarking",50	"frame-support/runtime-benchmarks",51	"frame-system/runtime-benchmarks",52]53#try-runtime = ["frame-support/try-runtime"]