mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-05 15:37:25 +00:00
e49493442a
* Add CI for monorepo * fix frame tests * Format features Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * add note for skipping tests and disable test-linux-stable-all * Fix tests and compile issues (#1152) * Fix feature dependant import Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bump test timeout Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove feature gate Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add resolver 2 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove old lockfile Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Format features Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix check-dependency-rules Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * rm test-runtime Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Actually fix script Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * enable cargo-check-each-crate-macos * Run check-each-crate on 6 machines (#1163) --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
66 lines
2.4 KiB
TOML
66 lines
2.4 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Simple pallet to select collators for a parachain."
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
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.20", default-features = false }
|
|
codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" }
|
|
rand = { version = "0.8.5", features = ["std_rng"], default-features = false }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
|
sp-staking = { path = "../../../substrate/primitives/staking", default-features = false}
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
|
pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false}
|
|
pallet-session = { path = "../../../substrate/frame/session", default-features = false}
|
|
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
|
|
|
[dev-dependencies]
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp" }
|
|
sp-consensus-aura = { path = "../../../substrate/primitives/consensus/aura" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-aura = { path = "../../../substrate/frame/aura" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-authorship/std",
|
|
"pallet-session/std",
|
|
"rand/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
|
|
try-runtime = [ "frame-support/try-runtime" ]
|
|
|
|
experimental = [ "pallet-aura/experimental" ]
|