mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 13:31:10 +00:00
More crate compiling for WASM-browser (#2825)
* More crate compiling for WASM-browser * Update runtime Cargo.lock
This commit is contained in:
committed by
Bastian Köcher
parent
4d3396d095
commit
ac895023be
@@ -22,7 +22,7 @@ consensus_common = { package = "substrate-consensus-common", path = "../common"
|
||||
authorities = { package = "substrate-consensus-authorities", path = "../authorities" }
|
||||
runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives" }
|
||||
futures = "0.1.17"
|
||||
tokio = "0.1.7"
|
||||
tokio-timer = "0.2.11"
|
||||
parking_lot = "0.8.0"
|
||||
log = "0.4"
|
||||
|
||||
@@ -32,4 +32,5 @@ substrate-executor = { path = "../../executor" }
|
||||
network = { package = "substrate-network", path = "../../network", features = ["test-helpers"]}
|
||||
service = { package = "substrate-service", path = "../../service" }
|
||||
test_client = { package = "substrate-test-client", path = "../../test-client" }
|
||||
tokio = "0.1.7"
|
||||
env_logger = "0.6"
|
||||
|
||||
@@ -56,7 +56,7 @@ use inherents::{InherentDataProviders, InherentData};
|
||||
use authorities::AuthoritiesApi;
|
||||
|
||||
use futures::{Future, IntoFuture, future};
|
||||
use tokio::timer::Timeout;
|
||||
use tokio_timer::Timeout;
|
||||
use log::{error, warn, debug, info, trace};
|
||||
|
||||
use srml_aura::{
|
||||
@@ -914,7 +914,7 @@ mod tests {
|
||||
.map(|_| ())
|
||||
.map_err(|_| ());
|
||||
|
||||
let drive_to_completion = ::tokio::timer::Interval::new_interval(TEST_ROUTING_INTERVAL)
|
||||
let drive_to_completion = ::tokio_timer::Interval::new_interval(TEST_ROUTING_INTERVAL)
|
||||
.for_each(move |_| {
|
||||
net.lock().send_import_notifications();
|
||||
net.lock().sync_without_disconnects();
|
||||
|
||||
Reference in New Issue
Block a user