mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 03:48:01 +00:00
035a576008
* Remove event pallet::metadata attributes * Add scale-info deps, TypeInfo derives, update call variants * Update metadata runtime APIs * Add missing scale_info dependency, update rococo runtime API * Add missing scale_info dependency * Remove pushed diener patches * Cargo.lock * Add missing scale-info dependencies * Fixes * Statemint runtime fixes * Call struct variant empty matches * Add missing scale-info dependency * Fixes * scale-info 1.0 * cargo update -p xcm * update lock * Update Cargo.lock * update to latest polkadot * remove rpc_http_threads https://github.com/paritytech/substrate/pull/9737 * replace task executor with tokio handler https://github.com/paritytech/substrate/pull/9737 * fix test compilation? * Update Cargo.lock * cargo update * remove unused * Update substrate and polkadot * Update test/client/src/lib.rs Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
60 lines
2.6 KiB
TOML
60 lines
2.6 KiB
TOML
[package]
|
|
authors = ['Anonymous']
|
|
description = 'Simple staking pallet with a fixed stake.'
|
|
edition = '2018'
|
|
homepage = 'https://substrate.dev'
|
|
license = 'Apache-2.0'
|
|
name = 'pallet-collator-selection'
|
|
readme = 'README.md'
|
|
repository = 'https://github.com/paritytech/cumulus/'
|
|
version = '3.0.0'
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ['x86_64-unknown-linux-gnu']
|
|
|
|
[dependencies]
|
|
log = { version = "0.4.0", default-features = false }
|
|
codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '2.0.0' }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.119", default-features = false }
|
|
sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-staking = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
pallet-authorship = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
pallet-session = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
|
|
frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-tracing = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
pallet-aura = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
|
|
|
[features]
|
|
default = ['std']
|
|
runtime-benchmarks = [
|
|
'frame-benchmarking',
|
|
'frame-support/runtime-benchmarks',
|
|
'frame-system/runtime-benchmarks',
|
|
]
|
|
std = [
|
|
'codec/std',
|
|
'log/std',
|
|
'scale-info/std',
|
|
'sp-runtime/std',
|
|
'sp-staking/std',
|
|
'sp-std/std',
|
|
'frame-support/std',
|
|
'frame-system/std',
|
|
'frame-benchmarking/std',
|
|
'pallet-authorship/std',
|
|
'pallet-session/std',
|
|
]
|