Skip to content

Commit 2c22077

Browse files
authored
Merge pull request #1062 from osiewicz/remove_build_rs
Simplify/remove build.rs following the bump to 2021 edition
2 parents 45f10ec + 04f7758 commit 2c22077

File tree

3 files changed

+1
-78
lines changed

3 files changed

+1
-78
lines changed

build.rs

-37
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,39 +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-
// BTreeMap::get_key_value
26-
// https://blog.rust-lang.org/2019/12/19/Rust-1.40.0.html#additions-to-the-standard-library
27-
if minor < 40 {
28-
println!("cargo:rustc-cfg=no_btreemap_get_key_value");
29-
}
30-
31-
// BTreeMap::remove_entry
32-
// https://blog.rust-lang.org/2020/07/16/Rust-1.45.0.html#library-changes
33-
if minor < 45 {
34-
println!("cargo:rustc-cfg=no_btreemap_remove_entry");
35-
}
36-
37-
// BTreeMap::retain
38-
// https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html#stabilized-apis
39-
if minor < 53 {
40-
println!("cargo:rustc-cfg=no_btreemap_retain");
41-
}
42-
}
43-
44-
fn rustc_minor_version() -> Option<u32> {
45-
let rustc = env::var_os("RUSTC")?;
46-
let output = Command::new(rustc).arg("--version").output().ok()?;
47-
let version = str::from_utf8(&output.stdout).ok()?;
48-
let mut pieces = version.split('.');
49-
if pieces.next() != Some("rustc 1") {
50-
return None;
51-
}
52-
let next = pieces.next()?;
53-
u32::from_str(next).ok()
5417
}

src/map.rs

+1-40
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ impl Map<String, Value> {
106106
/// The key may be any borrowed form of the map's key type, but the ordering
107107
/// on the borrowed form *must* match the ordering on the key type.
108108
#[inline]
109-
#[cfg(any(feature = "preserve_order", not(no_btreemap_get_key_value)))]
110109
pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&String, &Value)>
111110
where
112111
String: Borrow<Q>,
@@ -153,44 +152,7 @@ impl Map<String, Value> {
153152
String: Borrow<Q>,
154153
Q: ?Sized + Ord + Eq + Hash,
155154
{
156-
#[cfg(any(feature = "preserve_order", not(no_btreemap_remove_entry)))]
157-
return self.map.remove_entry(key);
158-
#[cfg(all(
159-
not(feature = "preserve_order"),
160-
no_btreemap_remove_entry,
161-
not(no_btreemap_get_key_value),
162-
))]
163-
{
164-
let (key, _value) = self.map.get_key_value(key)?;
165-
let key = key.clone();
166-
let value = self.map.remove::<String>(&key)?;
167-
Some((key, value))
168-
}
169-
#[cfg(all(
170-
not(feature = "preserve_order"),
171-
no_btreemap_remove_entry,
172-
no_btreemap_get_key_value,
173-
))]
174-
{
175-
use core::ops::{Bound, RangeBounds};
176-
177-
struct Key<'a, Q: ?Sized>(&'a Q);
178-
179-
impl<'a, Q: ?Sized> RangeBounds<Q> for Key<'a, Q> {
180-
fn start_bound(&self) -> Bound<&Q> {
181-
Bound::Included(self.0)
182-
}
183-
fn end_bound(&self) -> Bound<&Q> {
184-
Bound::Included(self.0)
185-
}
186-
}
187-
188-
let mut range = self.map.range(Key(key));
189-
let (key, _value) = range.next()?;
190-
let key = key.clone();
191-
let value = self.map.remove::<String>(&key)?;
192-
Some((key, value))
193-
}
155+
self.map.remove_entry(key)
194156
}
195157

196158
/// Moves all elements from other into self, leaving other empty.
@@ -276,7 +238,6 @@ impl Map<String, Value> {
276238
///
277239
/// In other words, remove all pairs `(k, v)` such that `f(&k, &mut v)`
278240
/// returns `false`.
279-
#[cfg(not(no_btreemap_retain))]
280241
#[inline]
281242
pub fn retain<F>(&mut self, f: F)
282243
where

tests/map.rs

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ fn test_append() {
3535
assert!(val.is_empty());
3636
}
3737

38-
#[cfg(not(no_btreemap_retain))]
3938
#[test]
4039
fn test_retain() {
4140
let mut v: Value = from_str(r#"{"b":null,"a":null,"c":null}"#).unwrap();

0 commit comments

Comments
 (0)