Skip to content

Commit

Permalink
chore: remove hashbrown
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax committed Jul 27, 2024
1 parent 08100a1 commit 4f21e1d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion starky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ lazy_static = "1.0"
## threading
rayon = { version = "1.5"}
num_cpus = "1.0"
hashbrown = { version = "0.14.3", features = ["rayon"] }

# error and log
anyhow = "1.0.79"
Expand Down
2 changes: 1 addition & 1 deletion starky/src/stark_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::traits::{FieldExtension, MTNodeType, MerkleTree, Transcript};
use crate::types::{StarkStruct, PIL};
use anyhow::Result;
use fields::field_gl::Fr as FGL;
use hashbrown::HashMap;
use std::collections::HashMap;
use profiler_macro::time_profiler;
use rayon::prelude::*;

Expand Down

0 comments on commit 4f21e1d

Please sign in to comment.