Skip to content

Commit e21d89d

Browse files
authored
Merge pull request #7 from divi255/develop
removed unmaintained fxhash crate
2 parents 817e35e + 30710db commit e21d89d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

httpsig/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ thiserror = { version = "2.0.16" }
1717
tracing = { version = "0.1.41" }
1818
rustc-hash = { version = "2.1.1" }
1919
indexmap = { version = "2.11.1" }
20-
fxhash = { version = "0.2.1" }
2120
rand = { version = "0.9.2" }
2221

2322
# crypto

httpsig/src/message_component/component.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ pub(super) fn build_http_field_component(
186186
#[cfg(test)]
187187
mod tests {
188188
use super::*;
189-
type IndexSet<K> = indexmap::IndexSet<K, fxhash::FxBuildHasher>;
189+
type IndexSet<K> = indexmap::IndexSet<K, rustc_hash::FxBuildHasher>;
190190

191191
#[test]
192192
fn test_from_serialized_string_derived() {

httpsig/src/message_component/component_param.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::error::{HttpSigError, HttpSigResult};
22
use sfv::{Parser, SerializeValue};
33

4-
type IndexSet<K> = indexmap::IndexSet<K, fxhash::FxBuildHasher>;
4+
type IndexSet<K> = indexmap::IndexSet<K, rustc_hash::FxBuildHasher>;
55

66
/* ---------------------------------------------------------------- */
77
#[derive(PartialEq, Eq, Hash, Debug, Clone)]

httpsig/src/signature_base.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::{
66
signature_params::HttpSignatureParams,
77
};
88
use base64::{engine::general_purpose, Engine as _};
9-
use fxhash::FxBuildHasher;
9+
use rustc_hash::FxBuildHasher;
1010
use indexmap::IndexMap;
1111
use sfv::{BareItem, Item, ListEntry, Parser};
1212

0 commit comments

Comments
 (0)