Skip to content

Commit e7976ec

Browse files
committed
chore: run ./update.sh
1 parent 360ff0c commit e7976ec

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

COMMIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2e6f3bd1d32455e535de1d9ee154253c333aec73
1+
d1fa49b2e66c343210c413b68ed57f150b7b89d8

src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
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(not(feature = "rustc-hash"))]
7+
use std::collections::HashMap;
68
use std::path::PathBuf;
79

8-
use std::collections::HashMap;
10+
#[cfg(feature = "rustc-hash")]
11+
use rustc_hash::FxHashMap as HashMap;
912
use serde::{Deserialize, Serialize};
1013

14+
1115
/// The version of JSON output that this crate represents.
1216
///
1317
/// This integer is incremented with every breaking change to the API,

0 commit comments

Comments
 (0)