Skip to content

Commit 5f8bc87

Browse files
committed
Remove FxHashMap -> HashMap logic now that it's unneeded.
Adapts to rust-lang/rust#110051
1 parent ed26026 commit 5f8bc87

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

COMMIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
52c71e6e2802a50d34ac4a3e96fc2636a3023eb2
1+
12ad0d6686335e0ee830d85030f815905c2dac90

src/lib.rs

+7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
//! These types are the public API exposed through the `--output-format json` flag. The [`Crate`]
44
//! struct is the root of the JSON blob and all other items are contained within.
55
6+
#![cfg_attr(feature = "rustc_hash", feature(rustc_private))]
7+
#[cfg(feature = "rustc_hash")]
8+
extern crate rustc_hash;
9+
#[cfg(feature = "rustc_hash")]
10+
use rustc_hash::FxHashMap as HashMap;
11+
#[cfg(not(feature = "rustc_hash"))]
612
use std::collections::HashMap;
13+
714
use serde::{Deserialize, Serialize};
815
use std::path::PathBuf;
916

update.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ pyjq() {
44
python3 -c "import json, sys; print(json.load(sys.stdin)${1})"
55
}
66

7-
user="rust-lang"
7+
user="aDotInTheVoid"
88
repo="rust"
9-
branch="master"
9+
branch="rdj-hashmap"
1010

11-
curl -# https://raw.githubusercontent.com/${user}/${repo}/${branch}/src/rustdoc-json-types/lib.rs | sed 's/rustc_hash::/std::collections::/g' | sed 's/FxHashMap/HashMap/g' > src/lib.rs
11+
curl -# https://raw.githubusercontent.com/${user}/${repo}/${branch}/src/rustdoc-json-types/lib.rs > src/lib.rs
1212

1313
curl -# https://raw.githubusercontent.com/${user}/${repo}/${branch}/src/rustdoc-json-types/tests.rs > src/tests.rs
1414

0 commit comments

Comments
 (0)