forked from openethereum/parity-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dapps and RPC server merge (openethereum#5365)
* Dapps server as a middleware. * Dapps RPC - Work in Progress * Merging Dapps and RPC server. * Fast HTTP server configuration. * Bump jsonrpc * Fixing test target * Re-implementing commented-out tests.
- Loading branch information
Showing
35 changed files
with
862 additions
and
1,241 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
description = "Parity Dapps crate" | ||
name = "ethcore-dapps" | ||
name = "parity-dapps" | ||
version = "1.7.0" | ||
license = "GPL-3.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
|
@@ -28,11 +28,8 @@ zip = { version = "0.1", default-features = false } | |
|
||
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" } | ||
# TODO [ToDr] Temporary solution, server should be merged with RPC. | ||
jsonrpc-server-utils = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" } | ||
|
||
ethcore-devtools = { path = "../devtools" } | ||
ethcore-rpc = { path = "../rpc" } | ||
ethcore-util = { path = "../util" } | ||
fetch = { path = "../util/fetch" } | ||
parity-hash-fetch = { path = "../hash-fetch" } | ||
|
@@ -42,7 +39,7 @@ parity-ui = { path = "./ui" } | |
clippy = { version = "0.0.103", optional = true} | ||
|
||
[features] | ||
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"] | ||
dev = ["clippy", "ethcore-util/dev"] | ||
|
||
ui = ["parity-ui/no-precompiled-js"] | ||
ui-precompiled = ["parity-ui/use-precompiled-js"] |
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 was deleted.
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
Oops, something went wrong.