Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.8 #508

Merged
merged 12 commits into from
Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump: dependencies
  • Loading branch information
aurexav committed Sep 2, 2020
commit f72549ce53437cb3009b3c2ab437ea95a806d033
1,322 changes: 844 additions & 478 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ nix = { version = "0.18" }
tempfile = { version = "3.1.0" }

# [patch.'https://github.com/paritytech/frontier']
# frame-benchmarking = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# frame-metadata = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# frame-support = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# frame-system = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# pallet-evm = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# pallet-timestamp = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# sp-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# sp-core = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# sp-io = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# sp-runtime = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# sp-std = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
# frame-benchmarking = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# frame-metadata = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# frame-support = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# frame-system = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# pallet-evm = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# pallet-timestamp = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# sp-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# sp-core = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# sp-io = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# sp-runtime = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# sp-std = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }

[features]
default = ["darwinia-cli/wasmtime"]
Expand Down
20 changes: 10 additions & 10 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ darwinia-cli = { optional = true, git = "https://github.com/darwinia-network/dar
# darwinia service
darwinia-service = { default-features = false, path = "../node/service" }
# substrate client
sc-cli = { optional = true, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-executor = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-network = { optional = true, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-service = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-tracing = { optional = true, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-cli = { optional = true, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-executor = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-network = { optional = true, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-service = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-tracing = { optional = true, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate primitives
sp-core = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-core = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# this crate is used only to enable `trie-memory-tracker` feature
# see https://github.com/paritytech/substrate/pull/6745
sp-trie = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-trie = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate utils
substrate-browser-utils = { optional = true, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
substrate-browser-utils = { optional = true, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }

[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
substrate-build-script-utils = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }

[features]
default = [
Expand Down
62 changes: 31 additions & 31 deletions node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,39 +27,39 @@ darwinia-rpc = { path = "../../rpc" }
# darwinia runtime
crab-runtime = { path = "../../runtime/crab" }
# substrate client
sc-authority-discovery = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-basic-authorship = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-chain-spec = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-client-db = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-consensus = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-executor = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-network = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-service = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-telemetry = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-authority-discovery = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-basic-authorship = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-chain-spec = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-client-db = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-consensus = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-executor = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-network = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-service = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-telemetry = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate frame
frame-system-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
pallet-im-online = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
frame-system-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
pallet-im-online = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate primitives
sp-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-authority-discovery = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-block-builder = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-blockchain = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-consensus = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-core = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-inherents = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-offchain = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-runtime = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-session = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-trie = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-authority-discovery = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-block-builder = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-blockchain = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-consensus = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-core = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-inherents = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-offchain = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-runtime = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-session = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-trie = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }

[features]
default = ["db", "full-node"]
Expand Down
8 changes: 4 additions & 4 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ version = "0.6.8"
# crates
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false }
# substrate frame
frame-system = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
frame-system = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate primitives
sp-application-crypto = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-core = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-runtime = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-application-crypto = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-core = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-runtime = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }

[features]
default = ["std"]
Expand Down
34 changes: 17 additions & 17 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ darwinia-staking-rpc = { git = "https://github.com/darwinia-network/darwinia-
# darwinia primitives
darwinia-primitives = { path = "../primitives" }
# substrate client
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-consensus-babe-rpc = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-consensus-epochs = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-finality-grandpa-rpc = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-keystore = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-rpc = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-rpc-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-consensus-babe-rpc = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-consensus-epochs = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-finality-grandpa-rpc = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-keystore = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-rpc = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sc-rpc-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate frame
pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# substrate primitives
sp-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-block-builder = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-blockchain = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-consensus = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-darwinia-rc6" }
sp-api = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-block-builder = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-blockchain = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-consensus = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
Loading