Files
pezkuwi-subxt/substrate/primitives/runtime-interface/test/Cargo.toml
T
Benjamin Kampmann 5a33228ea9 Reduce usage of Blake2Hasher (#5132)
This reduces the usage of `Blake2Hasher` in the code base and replaces
it with `BlakeTwo256`. The most important change is the removal of the
custom extern function for `Blake2Hasher`. The runtime `Hash` trait is
now also simplified and directly requires that the implementing type
implements `Hashable`.
2020-03-05 08:51:03 +01:00

18 lines
724 B
TOML

[package]
name = "sp-runtime-interface-test"
version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies]
sp-runtime-interface = { version = "2.0.0-alpha.2", path = "../" }
sc-executor = { version = "0.8.0-alpha.2", path = "../../../client/executor" }
sp-runtime-interface-test-wasm = { version = "2.0.0-dev", path = "../test-wasm" }
sp-state-machine = { version = "0.8.0-alpha.2", path = "../../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-alpha.2", path = "../../runtime" }
sp-io = { version = "2.0.0-alpha.2", path = "../../io" }