Skip to content

Commit

Permalink
feat: remove hashbrown (#273)
Browse files Browse the repository at this point in the history
* chore: remove hashbrown
  • Loading branch information
eigmax authored Jul 27, 2024
1 parent 929566b commit 4b09b22
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,9 +16,9 @@ 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 profiler_macro::time_profiler;
use rayon::prelude::*;
use std::collections::HashMap;

pub struct StarkContext<F: FieldExtension> {
pub nbits: usize,
Expand Down

0 comments on commit 4b09b22

Please sign in to comment.