Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
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
keep'em dev-deps
  • Loading branch information
gnunicorn committed Feb 26, 2020
commit 1f1f7e8a1e1bcdfbb2c314cffa547f26510b61a6
13 changes: 13 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions bin/node-template/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@ default-features = false
package = 'frame-system'
version = "2.0.0-alpha.1"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-alpha.1"
path = "../../../../primitives/core"

[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-alpha.1"
path = "../../../../primitives/io"

[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-alpha.1"
path = "../../../../primitives/runtime"


[features]
default = ['std']
Expand Down
10 changes: 10 additions & 0 deletions client/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ sp-transaction-pool = { version = "2.0.0-alpha.1", path = "../../primitives/tran
sp-blockchain = { version = "2.0.0-alpha.1", path = "../../primitives/blockchain" }
hash-db = { version = "0.15.2", default-features = false }
parking_lot = "0.10.0"

[dev-dependencies]
assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" }
sc-network = { version = "0.8.0-alpha.1", path = "../network" }
rustc-hex = "2.0.1"
sp-io = { version = "2.0.0-alpha.1", path = "../../primitives/io" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
tokio = "0.1.22"
sc-transaction-pool = { version = "2.0.0-alpha.1", path = "../transaction-pool" }
4 changes: 4 additions & 0 deletions utils/frame/rpc/support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@ serde = "1"
frame-support = { version = "2.0.0-alpha.1", path = "../../../../frame/support" }
sp-storage = { version = "2.0.0-alpha.1", path = "../../../../primitives/storage" }
sc-rpc-api = { version = "0.8.0-alpha.1", path = "../../../../client/rpc-api" }

[dev-dependencies]
frame-system = { version = "2.0.0-alpha.1", path = "../../../../frame/system" }
tokio = "0.1"