Skip to content

Commit

Permalink
rust: Drop hashbrown in ekore for std
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Aug 22, 2024
1 parent c9bb4ac commit 7f1adeb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/ekore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ rustdoc-args = ["--html-in-header", "doc-header.html"]
[dependencies]
num = "0.4.1"
float-cmp = "0.9.0"
hashbrown = "0.14"
2 changes: 1 addition & 1 deletion crates/ekore/src/harmonics/cache.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Cache harmonic sums for given Mellin N.

use hashbrown::HashMap;
use num::{complex::Complex, Zero};
use std::collections::HashMap;

use crate::harmonics::{g_functions, w1, w2, w3, w4};

Expand Down

0 comments on commit 7f1adeb

Please sign in to comment.