File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
- 2e6f3bd1d32455e535de1d9ee154253c333aec73
1
+ d1fa49b2e66c343210c413b68ed57f150b7b89d8
Original file line number Diff line number Diff line change 3
3
//! These types are the public API exposed through the `--output-format json` flag. The [`Crate`]
4
4
//! struct is the root of the JSON blob and all other items are contained within.
5
5
6
+ #[ cfg( not( feature = "rustc-hash" ) ) ]
7
+ use std:: collections:: HashMap ;
6
8
use std:: path:: PathBuf ;
7
9
8
- use std:: collections:: HashMap ;
10
+ #[ cfg( feature = "rustc-hash" ) ]
11
+ use rustc_hash:: FxHashMap as HashMap ;
9
12
use serde:: { Deserialize , Serialize } ;
10
13
14
+
11
15
/// The version of JSON output that this crate represents.
12
16
///
13
17
/// This integer is incremented with every breaking change to the API,
You can’t perform that action at this time.
0 commit comments