This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update jsonrpc dependencies and rewrite dapps to futures. (#6522)
* Bump version. * Fix RPC crate. * Fix BoxFuture in crates. * Compiles and passes tests! * Get rid of .boxed() * Fixing issues with the UI. * Remove minihttp. Support threads. * Reimplement files serving to do it in chunks. * Increase chunk size. * Remove some unecessary copying. * Fix tests. * Fix stratum warning and ipfs todo. * Switch to proper branch of jsonrpc. * Update Cargo.lock. * Update docs. * Include dapps-glue in workspace. * fixed merge artifacts * Fix test compilation.
- Loading branch information
Showing
118 changed files
with
2,063 additions
and
2,881 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,25 +10,23 @@ authors = ["Parity Technologies <[email protected]>"] | |
[dependencies] | ||
base32 = "0.3" | ||
futures = "0.1" | ||
linked-hash-map = "0.3" | ||
futures-cpupool = "0.1" | ||
linked-hash-map = "0.5" | ||
log = "0.3" | ||
parity-dapps-glue = "1.7" | ||
parity-dapps-glue = "1.8" | ||
parking_lot = "0.4" | ||
mime = "0.2" | ||
mime_guess = "1.6.1" | ||
mime_guess = "2.0.0-alpha.2" | ||
rand = "0.3" | ||
rustc-hex = "1.0" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
time = "0.1.35" | ||
unicase = "1.3" | ||
url = "1.0" | ||
unicase = "1.4" | ||
zip = { version = "0.1", default-features = false } | ||
itertools = "0.5" | ||
|
||
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" } | ||
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" } | ||
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" } | ||
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" } | ||
|
||
ethcore-util = { path = "../util" } | ||
ethcore-bigint = { path = "../util/bigint" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
description = "Base Package for all Parity built-in dapps" | ||
name = "parity-dapps-glue" | ||
version = "1.7.0" | ||
version = "1.8.0" | ||
license = "GPL-3.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
|
@@ -12,7 +12,7 @@ syntex = { version = "0.58", optional = true } | |
|
||
[dependencies] | ||
glob = { version = "0.2.11" } | ||
mime_guess = { version = "1.6.1" } | ||
mime_guess = { version = "2.0.0-alpha.2" } | ||
aster = { version = "0.41", default-features = false } | ||
quasi = { version = "0.32", default-features = false } | ||
quasi_macros = { version = "0.32", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.