Fix web support. (#1155)

The default features of `sp-core-hashing` was enabling `std` on `sp-std`
which causes issues with some other Substrate crates (`sp-arithmetic`).
This commit is contained in:
Robert Gabriel Jakabosky
2023-09-11 17:25:48 +08:00
committed by GitHub
parent 06037aced7
commit 33353e91c4
+1 -1
View File
@@ -98,7 +98,7 @@ tokio-util = "0.7.8"
# Substrate crates:
sp-core = { version = "21.0.0", default-features = false }
sp-core-hashing = "9.0.0"
sp-core-hashing = { version = "9.0.0", default-features = false }
sp-runtime = "24.0.0"
sp-keyring = "24.0.0"