diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-09-05 22:47:38 +0200 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-09-05 22:47:38 +0200 |
| commit | ba6a03d6038f8c1e3973879bd23490a86539d2b1 (patch) | |
| tree | 965cf4247eb3fa5df74ad8ca4947474ffc0a77ec /crates/parser | |
| parent | 86bcc87de2163f4b83e1e3f4bfa3dd7ec6482284 (diff) | |
chore: update to rust 1.81, update wasm testsuite
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser')
| -rw-r--r-- | crates/parser/src/error.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/parser/src/error.rs b/crates/parser/src/error.rs index 7bd484f..9ff2f79 100644 --- a/crates/parser/src/error.rs +++ b/crates/parser/src/error.rs @@ -59,8 +59,7 @@ impl Display for ParseError { } } -#[cfg(any(feature = "std", all(not(feature = "std"), feature = "nightly")))] -impl crate::std::error::Error for ParseError {} +impl core::error::Error for ParseError {} impl From<wasmparser::BinaryReaderError> for ParseError { fn from(value: wasmparser::BinaryReaderError) -> Self { |
