Skip to content

Commit

Permalink
fix(rpc): companion for #427
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Jan 4, 2021
1 parent d2a7465 commit da8174e
Show file tree
Hide file tree
Showing 9 changed files with 230 additions and 135 deletions.
335 changes: 215 additions & 120 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[[bin]]
name = "darwinia"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-cli"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[package.metadata.wasm-pack.profile.release]
# `wasm-opt` has some problems on linux, see
Expand All @@ -26,7 +26,7 @@ tokio = { version = "0.3.5", optional = true, features = ["rt-mul
wasm-bindgen = { version = "0.2.69", optional = true }
wasm-bindgen-futures = { version = "0.4.19", optional = true }
# darwinia client
darwinia-cli = { optional = true, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-cli = { optional = true, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
# darwinia service
darwinia-service = { default-features = false, path = "../node/service" }
# substrate client
Expand Down
8 changes: 4 additions & 4 deletions node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-service"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
Expand All @@ -17,9 +17,9 @@ log = { version = "0.4.11" }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = { version = "1.0.61" }
# darwinia frame
darwinia-balances-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-header-mmr-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-staking-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-balances-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
darwinia-header-mmr-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
darwinia-staking-rpc-runtime-api = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
# darwinia primitives
darwinia-primitives = { path = "../../primitives" }
# darwinia rpc
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-primitives"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
Expand Down
8 changes: 4 additions & 4 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-rpc"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false }
jsonrpc-core = { version = "15.1.0" }
# darwinia frame
darwinia-balances-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-header-mmr-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-staking-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-balances-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
darwinia-header-mmr-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
darwinia-staking-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "xavier-fix" }
# darwinia primitives
darwinia-primitives = { path = "../primitives" }
# substrate client
Expand Down
2 changes: 1 addition & 1 deletion runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-runtime-common"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
Expand Down
2 changes: 1 addition & 1 deletion runtime/crab/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "crab-runtime"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia-runtime"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.8.4"
version = "0.8.5"

[dependencies]
# crates
Expand Down

0 comments on commit da8174e

Please sign in to comment.