Skip to content

Commit

Permalink
Expand api (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: Federica <[email protected]>
Co-authored-by: Pedro Fontana <[email protected]>
Co-authored-by: juan.mv <[email protected]>
  • Loading branch information
4 people authored Oct 18, 2023
1 parent 285e4c0 commit ea52b64
Show file tree
Hide file tree
Showing 3 changed files with 315 additions and 29 deletions.
5 changes: 4 additions & 1 deletion crates/stark-felt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ readme = "README.md"
[dependencies]
bitvec = { version = "1.0.1", default-features = false }
serde = { version = "1.0.163", optional = true, default-features = false }
lambdaworks-math = { version = "0.1.3", default-features = false }
lambdaworks-math = { version = "0.2.0", default_features = false }
arbitrary = { version = "1.3.0", optional = true, default-features = false }
num-traits = { version = "0.2.16", default-features = false }

[features]
default = ["std", "serde"]
std = []
alloc = ["serde?/alloc"]
arbitrary = ["std", "dep:arbitrary"]

[dev-dependencies]
proptest = "1.1.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use lambdaworks_math::{field::element::FieldElement, unsigned_integer::element::UnsignedInteger};
use num_traits::Zero;
use proptest::prelude::*;

use crate::Felt;
Expand Down
Loading

0 comments on commit ea52b64

Please sign in to comment.