Skip to content

Commit

Permalink
chore: run ./update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jalil-salame committed Oct 20, 2024
1 parent 360ff0c commit e7976ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion COMMIT.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2e6f3bd1d32455e535de1d9ee154253c333aec73
d1fa49b2e66c343210c413b68ed57f150b7b89d8
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
//! These types are the public API exposed through the `--output-format json` flag. The [`Crate`]
//! struct is the root of the JSON blob and all other items are contained within.
#[cfg(not(feature = "rustc-hash"))]
use std::collections::HashMap;
use std::path::PathBuf;

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


/// The version of JSON output that this crate represents.
///
/// This integer is incremented with every breaking change to the API,
Expand Down

0 comments on commit e7976ec

Please sign in to comment.