Use git instead of crates.io for Substrate

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
Oliver Tale-Yazdi
2022-10-31 13:04:51 +01:00
parent da507fa6d2
commit a9fbd766d2
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -5,12 +5,12 @@ edition = "2021"
[dependencies]
subxt = { path = "../../subxt" }
sp-runtime = "6.0.0"
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
[build-dependencies]
subxt = { path = "../../subxt" }
sp-core = "6.0.0"
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
which = "4.2.2"
jsonrpsee = { version = "0.15.1", features = ["async-client", "client-ws-transport"] }