mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
Remove dependency on error_chain (#277)
* Convert validation error * Convert wasm_executor error * Convert block evaluation error * Convert collation errors and the compilation * Remove error-chain dep from service * Remove unused Result type * Remove unused error variants * Remove redundant intos * Add missing comments * Update validation/src/collation.rs Co-Authored-By: thiolliere <gui.thiolliere@gmail.com> * Fix new error variant
This commit is contained in:
committed by
Bastian Köcher
parent
0634e90031
commit
bdc1502411
@@ -8,7 +8,7 @@ description = "Types and utilities for creating and working with parachains"
|
||||
parity-codec = { version = "3.5", default-features = false }
|
||||
parity-codec-derive = { version = "3.3", default-features = false }
|
||||
wasmi = { version = "0.4.3", optional = true }
|
||||
error-chain = { version = "0.12", optional = true }
|
||||
derive_more = { version = "0.14", optional = true }
|
||||
serde = { version = "1.0", default-features = false }
|
||||
serde_derive = { version = "1.0", optional = true }
|
||||
|
||||
@@ -18,4 +18,4 @@ tiny-keccak = "1.4"
|
||||
[features]
|
||||
default = ["std"]
|
||||
wasm-api = []
|
||||
std = ["parity-codec/std", "wasmi", "error-chain", "serde_derive", "serde/std"]
|
||||
std = ["parity-codec/std", "wasmi", "derive_more", "serde_derive", "serde/std"]
|
||||
|
||||
Reference in New Issue
Block a user