Skip to content

Commit c36aa67

Browse files
committed
Use same FxHashMap in rustdoc-json-types and librustdoc.
1 parent 11dd90f commit c36aa67

File tree

7 files changed

+34
-28
lines changed

7 files changed

+34
-28
lines changed

Cargo.lock

-2
Original file line numberDiff line numberDiff line change
@@ -2074,7 +2074,6 @@ dependencies = [
20742074
"anyhow",
20752075
"clap",
20762076
"fs-err",
2077-
"rustc-hash",
20782077
"rustdoc-json-types",
20792078
"serde",
20802079
"serde_json",
@@ -4929,7 +4928,6 @@ name = "rustdoc-json-types"
49294928
version = "0.1.0"
49304929
dependencies = [
49314930
"bincode",
4932-
"rustc-hash",
49334931
"serde",
49344932
"serde_json",
49354933
]

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ indexmap = "2"
1515
minifier = "0.3.0"
1616
pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false }
1717
regex = "1"
18-
rustdoc-json-types = { path = "../rustdoc-json-types" }
18+
rustdoc-json-types = { path = "../rustdoc-json-types", features = ["rustc-hash"] }
1919
serde_json = "1.0"
2020
serde = { version = "1.0", features = ["derive"] }
2121
smallvec = "1.8.1"

src/librustdoc/json/mod.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -228,14 +228,11 @@ impl<'tcx> FormatRenderer<'tcx> for JsonRenderer<'tcx> {
228228
let index = (*self.index).clone().into_inner();
229229

230230
debug!("Constructing Output");
231-
// This needs to be the default HashMap for compatibility with the public interface for
232-
// rustdoc-json-types
233-
#[allow(rustc::default_hash_types)]
234231
let output = types::Crate {
235232
root: types::Id(format!("0:0:{}", e.name(self.tcx).as_u32())),
236233
crate_version: self.cache.crate_version.clone(),
237234
includes_private: self.cache.document_private,
238-
index: index.into_iter().collect(),
235+
index,
239236
paths: self
240237
.cache
241238
.paths

src/rustdoc-json-types/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ path = "lib.rs"
88

99
[dependencies]
1010
serde = { version = "1.0", features = ["derive"] }
11-
rustc-hash = "1.1.0"
11+
# rustc-hash = { version = "1.1.0", optional = true }
1212

1313
[dev-dependencies]
1414
serde_json = "1.0"
1515
bincode = "1"
16+
17+
[features]
18+
rustc-hash = []
19+

src/rustdoc-json-types/lib.rs

+12-5
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-
use rustc_hash::FxHashMap;
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"))]
12+
use std::collections::HashMap;
13+
714
use serde::{Deserialize, Serialize};
815
use std::path::PathBuf;
916

@@ -23,11 +30,11 @@ pub struct Crate {
2330
pub includes_private: bool,
2431
/// A collection of all items in the local crate as well as some external traits and their
2532
/// items that are referenced locally.
26-
pub index: FxHashMap<Id, Item>,
33+
pub index: HashMap<Id, Item>,
2734
/// Maps IDs to fully qualified paths and other info helpful for generating links.
28-
pub paths: FxHashMap<Id, ItemSummary>,
35+
pub paths: HashMap<Id, ItemSummary>,
2936
/// Maps `crate_id` of items to a crate name and html_root_url if it exists.
30-
pub external_crates: FxHashMap<u32, ExternalCrate>,
37+
pub external_crates: HashMap<u32, ExternalCrate>,
3138
/// A single version number to be used in the future when making backwards incompatible changes
3239
/// to the JSON output.
3340
pub format_version: u32,
@@ -79,7 +86,7 @@ pub struct Item {
7986
/// Some("") if there is some documentation but it is empty (EG `#[doc = ""]`).
8087
pub docs: Option<String>,
8188
/// This mapping resolves [intra-doc links](https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md) from the docstring to their IDs
82-
pub links: FxHashMap<String, Id>,
89+
pub links: HashMap<String, Id>,
8390
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
8491
pub attrs: Vec<String>,
8592
pub deprecation: Option<Deprecation>,

src/tools/jsondoclint/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ edition = "2021"
99
anyhow = "1.0.62"
1010
clap = { version = "4.0.15", features = ["derive"] }
1111
fs-err = "2.8.1"
12-
rustc-hash = "1.1.0"
1312
rustdoc-json-types = { version = "0.1.0", path = "../../rustdoc-json-types" }
1413
serde = { version = "1.0", features = ["derive"] }
1514
serde_json = "1.0.85"

src/tools/jsondoclint/src/validator/tests.rs

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use rustc_hash::FxHashMap;
1+
use std::collections::HashMap;
2+
23
use rustdoc_json_types::{Item, ItemKind, Visibility, FORMAT_VERSION};
34

45
use crate::json_find::SelectorPart;
@@ -26,7 +27,7 @@ fn errors_on_missing_links() {
2627
root: id("0"),
2728
crate_version: None,
2829
includes_private: false,
29-
index: FxHashMap::from_iter([(
30+
index: HashMap::from_iter([(
3031
id("0"),
3132
Item {
3233
name: Some("root".to_owned()),
@@ -35,7 +36,7 @@ fn errors_on_missing_links() {
3536
span: None,
3637
visibility: Visibility::Public,
3738
docs: None,
38-
links: FxHashMap::from_iter([("Not Found".to_owned(), id("1"))]),
39+
links: HashMap::from_iter([("Not Found".to_owned(), id("1"))]),
3940
attrs: vec![],
4041
deprecation: None,
4142
inner: ItemEnum::Module(Module {
@@ -45,8 +46,8 @@ fn errors_on_missing_links() {
4546
}),
4647
},
4748
)]),
48-
paths: FxHashMap::default(),
49-
external_crates: FxHashMap::default(),
49+
paths: HashMap::default(),
50+
external_crates: HashMap::default(),
5051
format_version: rustdoc_json_types::FORMAT_VERSION,
5152
};
5253

@@ -72,7 +73,7 @@ fn errors_on_local_in_paths_and_not_index() {
7273
root: id("0:0:1572"),
7374
crate_version: None,
7475
includes_private: false,
75-
index: FxHashMap::from_iter([
76+
index: HashMap::from_iter([
7677
(
7778
id("0:0:1572"),
7879
Item {
@@ -82,7 +83,7 @@ fn errors_on_local_in_paths_and_not_index() {
8283
span: None,
8384
visibility: Visibility::Public,
8485
docs: None,
85-
links: FxHashMap::from_iter([(("prim@i32".to_owned(), id("0:1:1571")))]),
86+
links: HashMap::from_iter([(("prim@i32".to_owned(), id("0:1:1571")))]),
8687
attrs: Vec::new(),
8788
deprecation: None,
8889
inner: ItemEnum::Module(Module {
@@ -101,22 +102,22 @@ fn errors_on_local_in_paths_and_not_index() {
101102
span: None,
102103
visibility: Visibility::Public,
103104
docs: None,
104-
links: FxHashMap::default(),
105+
links: HashMap::default(),
105106
attrs: Vec::new(),
106107
deprecation: None,
107108
inner: ItemEnum::Primitive(Primitive { name: "i32".to_owned(), impls: vec![] }),
108109
},
109110
),
110111
]),
111-
paths: FxHashMap::from_iter([(
112+
paths: HashMap::from_iter([(
112113
id("0:1:1571"),
113114
ItemSummary {
114115
crate_id: 0,
115116
path: vec!["microcore".to_owned(), "i32".to_owned()],
116117
kind: ItemKind::Primitive,
117118
},
118119
)]),
119-
external_crates: FxHashMap::default(),
120+
external_crates: HashMap::default(),
120121
format_version: rustdoc_json_types::FORMAT_VERSION,
121122
};
122123

@@ -136,7 +137,7 @@ fn checks_local_crate_id_is_correct() {
136137
root: id("root"),
137138
crate_version: None,
138139
includes_private: false,
139-
index: FxHashMap::from_iter([(
140+
index: HashMap::from_iter([(
140141
id("root"),
141142
Item {
142143
id: id("root"),
@@ -145,7 +146,7 @@ fn checks_local_crate_id_is_correct() {
145146
span: None,
146147
visibility: Visibility::Public,
147148
docs: None,
148-
links: FxHashMap::default(),
149+
links: HashMap::default(),
149150
attrs: Vec::new(),
150151
deprecation: None,
151152
inner: ItemEnum::Module(Module {
@@ -155,8 +156,8 @@ fn checks_local_crate_id_is_correct() {
155156
}),
156157
},
157158
)]),
158-
paths: FxHashMap::default(),
159-
external_crates: FxHashMap::default(),
159+
paths: HashMap::default(),
160+
external_crates: HashMap::default(),
160161
format_version: FORMAT_VERSION,
161162
};
162163
check(&krate, &[]);

0 commit comments

Comments
 (0)