-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always implement
Error for BinaryReaderError
(#1928)
This commit updates the `wasmparser` crate to always implement the `BinaryReaderError` trait even when the `std` feature is disabled. This is done in a way to not increase the MSRV for now and instead leave it at 1.76.
- Loading branch information
1 parent
5acc2df
commit f5d8173
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use std::process::Command; | ||
use std::str; | ||
|
||
fn main() { | ||
// Temporary check to see if the rustc version >= 1.81 in which case the | ||
// `Error` trait is always available. This is temporary because in the | ||
// future the MSRV of this crate will be beyond 1.81 in which case this | ||
// build script can be deleted. | ||
let minor = rustc_minor_version().unwrap_or(0); | ||
if minor >= 81 { | ||
println!("cargo:rustc-cfg=core_error"); | ||
} | ||
if minor >= 80 { | ||
println!("cargo:rustc-check-cfg=cfg(core_error)"); | ||
} | ||
} | ||
|
||
fn rustc_minor_version() -> Option<u32> { | ||
let rustc = std::env::var("RUSTC").unwrap(); | ||
let output = Command::new(rustc).arg("--version").output().ok()?; | ||
let version = str::from_utf8(&output.stdout).ok()?; | ||
let mut pieces = version.split('.'); | ||
if pieces.next() != Some("rustc 1") { | ||
return None; | ||
} | ||
pieces.next()?.parse().ok() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters