mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 08:41:07 +00:00
b7c6bc1ed5
* Use session::validators instead of staking::current_elected * Basic test framework. * Initialize validators, attempt to heartbeat. * Use dummy crypto for im-online testing. * Remove printlns. * Finish test, make it invalid. * Add reporting test. * Finalize the test. * Remove dumbness. * Updates. * Update AuRa * Update srml/im-online/src/tests.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Derive Ord * Add some more tests. * Remove stray todo. * Bump runtime version. * Bump impl-trait-for-tuples. * Enforce new version of trait-for-tuples.
38 lines
1.4 KiB
TOML
38 lines
1.4 KiB
TOML
[package]
|
|
name = "srml-im-online"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../core/application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
primitives = { package="substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
session = { package = "srml-session", path = "../session", default-features = false }
|
|
runtime-io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
sr-staking-primitives = { path = "../../core/sr-staking-primitives", default-features = false }
|
|
support = { package = "srml-support", path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
offchain = { package = "substrate-offchain", path = "../../core/offchain" }
|
|
|
|
[features]
|
|
default = ["std", "session/historical"]
|
|
std = [
|
|
"app-crypto/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
"session/std",
|
|
"runtime-io/std",
|
|
"sr-primitives/std",
|
|
"sr-staking-primitives/std",
|
|
"support/std",
|
|
"system/std",
|
|
]
|