Skip to content

Commit 04f7758

Browse files
committed
fixup! chore: Remove no_btreemap_get_key_value and no_btreemap_remove_entry.
1 parent 83bdc5f commit 04f7758

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

build.rs

-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
use std::env;
2-
use std::process::Command;
3-
use std::str::{self, FromStr};
42

53
fn main() {
64
println!("cargo:rerun-if-changed=build.rs");
@@ -16,21 +14,4 @@ fn main() {
1614
println!("cargo:rustc-cfg=limb_width_32");
1715
}
1816
}
19-
20-
let minor = match rustc_minor_version() {
21-
Some(minor) => minor,
22-
None => return,
23-
};
24-
}
25-
26-
fn rustc_minor_version() -> Option<u32> {
27-
let rustc = env::var_os("RUSTC")?;
28-
let output = Command::new(rustc).arg("--version").output().ok()?;
29-
let version = str::from_utf8(&output.stdout).ok()?;
30-
let mut pieces = version.split('.');
31-
if pieces.next() != Some("rustc 1") {
32-
return None;
33-
}
34-
let next = pieces.next()?;
35-
u32::from_str(next).ok()
3617
}

0 commit comments

Comments
 (0)