diff --git a/Cargo.lock b/Cargo.lock index d463dafe6..4ed88790c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -356,8 +356,8 @@ dependencies = [ "jsonrpc-core 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 5.1.0 (git+https://github.com/ethcore/jsonrpc-http-server.git)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-idmanager 0.2.0 (git+https://github.com/ethcore/parity-idmanager-rs.git)", - "parity-status 0.4.0 (git+https://github.com/ethcore/parity-status.git)", + "parity-idmanager 0.2.2 (git+https://github.com/ethcore/parity-idmanager-rs.git)", + "parity-status 0.4.3 (git+https://github.com/ethcore/parity-status.git)", "parity-wallet 0.4.0 (git+https://github.com/ethcore/parity-wallet.git)", "parity-webapp 0.2.0 (git+https://github.com/ethcore/parity-webapp.git)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -836,16 +836,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "parity-idmanager" -version = "0.2.0" -source = "git+https://github.com/ethcore/parity-idmanager-rs.git#be59a97cdd15dd733583938973ef65ff3beab463" +version = "0.2.2" +source = "git+https://github.com/ethcore/parity-idmanager-rs.git#a1c2ab1893d4abe801c821eb49247d89ab016d44" dependencies = [ "parity-webapp 0.2.0 (git+https://github.com/ethcore/parity-webapp.git)", ] [[package]] name = "parity-status" -version = "0.4.0" -source = "git+https://github.com/ethcore/parity-status.git#0ab708f869366543a8de953300e49098be0b7dbd" +version = "0.4.3" +source = "git+https://github.com/ethcore/parity-status.git#1d383d74010f6ebcd712b60b8fc5ff547b44f4e5" dependencies = [ "parity-webapp 0.2.0 (git+https://github.com/ethcore/parity-webapp.git)", ] diff --git a/webapp/Cargo.toml b/webapp/Cargo.toml index 1d71a9126..8f9353386 100644 --- a/webapp/Cargo.toml +++ b/webapp/Cargo.toml @@ -22,8 +22,8 @@ ethcore-rpc = { path = "../rpc" } ethcore-util = { path = "../util" } parity-webapp = { git = "https://github.com/ethcore/parity-webapp.git", version = "0.2" } # List of apps -parity-status = { git = "https://github.com/ethcore/parity-status.git", version = "0.4.0" } -parity-idmanager = { git = "https://github.com/ethcore/parity-idmanager-rs.git", version = "0.2.0" } +parity-status = { git = "https://github.com/ethcore/parity-status.git", version = "0.4.3" } +parity-idmanager = { git = "https://github.com/ethcore/parity-idmanager-rs.git", version = "0.2.2" } parity-wallet = { git = "https://github.com/ethcore/parity-wallet.git", version = "0.4.0", optional = true } clippy = { version = "0.0.67", optional = true} diff --git a/webapp/src/apps.rs b/webapp/src/apps.rs index 1c9b7e5a8..410a5bc2c 100644 --- a/webapp/src/apps.rs +++ b/webapp/src/apps.rs @@ -30,7 +30,7 @@ pub const API_PATH : &'static str = "api"; pub const UTILS_PATH : &'static str = "parity-utils"; pub fn main_page() -> &'static str { - "/status/" + "/home/" } pub fn utils() -> Box { @@ -43,6 +43,7 @@ pub fn all_endpoints() -> Endpoints { insert::(&mut pages, "status"); insert::(&mut pages, "parity"); + insert::(&mut pages, "home"); wallet_page(&mut pages); pages