Bump deps and fix build

This commit is contained in:
Demi M. Obenour
2020-06-25 21:14:00 -04:00
parent f15c5f6373
commit d3df9eabe0
13 changed files with 97 additions and 104 deletions
+21 -21
View File
@@ -24,41 +24,41 @@ client = ["substrate-subxt-client"]
[dependencies]
log = "0.4.8"
thiserror = "1.0.20"
futures = "0.3.5"
futures = { version = "0.3.5", package = "futures" }
jsonrpsee = { version = "0.1.0", features = ["ws"] }
num-traits = { version = "0.2.12", default-features = false }
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.55"
url = "2.1.1"
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive", "full"] }
frame-metadata = { version = "11.0.0-rc3", package = "frame-metadata" }
frame-support = { version = "2.0.0-rc3", package = "frame-support" }
sp-runtime = { version = "2.0.0-rc3", package = "sp-runtime" }
sp-version = { version = "2.0.0-rc3", package = "sp-version" }
pallet-indices = { version = "2.0.0-rc3", package = "pallet-indices" }
frame-metadata = { version = "11.0.0-rc4", package = "frame-metadata" }
frame-support = { version = "2.0.0-rc4", package = "frame-support" }
sp-runtime = { version = "2.0.0-rc4", package = "sp-runtime" }
sp-version = { version = "2.0.0-rc4", package = "sp-version" }
pallet-indices = { version = "2.0.0-rc4", package = "pallet-indices" }
hex = "0.4.2"
sp-rpc = { version = "2.0.0-rc3", package = "sp-rpc" }
sp-core = { version = "2.0.0-rc3", package = "sp-core" }
sc-rpc-api = { version = "0.8.0-rc3", package = "sc-rpc-api" }
sp-transaction-pool = { version = "2.0.0-rc3", package = "sp-transaction-pool" }
sp-rpc = { version = "2.0.0-rc4", package = "sp-rpc" }
sp-core = { version = "2.0.0-rc4", package = "sp-core" }
sc-rpc-api = { version = "0.8.0-rc4", package = "sc-rpc-api" }
sp-transaction-pool = { version = "2.0.0-rc4", package = "sp-transaction-pool" }
substrate-subxt-client = { version = "0.1.0", path = "client", optional = true }
substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" }
sp-std = "2.0.0-rc3"
application-crypto = { version = "2.0.0-rc3", package = "sp-application-crypto", default-features = false }
sp-finality-grandpa = { version = "2.0.0-rc3" }
sp-consensus-babe = { version = "0.8.0-rc3" }
pallet-im-online = { version = "2.0.0-rc3" }
sp-authority-discovery = { version = "2.0.0-rc3" }
pallet-staking = "2.0.0-rc3"
sp-std = "2.0.0-rc4"
application-crypto = { version = "2.0.0-rc4", package = "sp-application-crypto", default-features = false }
sp-finality-grandpa = "2.0.0-rc4"
sp-consensus-babe = "0.8.0-rc4"
pallet-im-online = "2.0.0-rc4"
sp-authority-discovery = "2.0.0-rc4"
pallet-staking = "2.0.0-rc4"
[dev-dependencies]
async-std = { version = "=1.5.0", features = ["attributes"] }
env_logger = "0.7.1"
wabt = "0.9.2"
frame-system = { version = "2.0.0-rc3", package = "frame-system" }
pallet-balances = { version = "2.0.0-rc3", package = "pallet-balances" }
sp-keyring = { version = "2.0.0-rc3", package = "sp-keyring" }
frame-system = { version = "2.0.0-rc4", package = "frame-system" }
pallet-balances = { version = "2.0.0-rc4", package = "pallet-balances" }
sp-keyring = { version = "2.0.0-rc4", package = "sp-keyring" }
substrate-subxt-client = { version = "0.1.0", path = "client" }
tempdir = "0.3.7"
test-node = { path = "test-node" }