Skip to content

Commit

Permalink
feat: re-export felt crate from cairo_vm (#981)
Browse files Browse the repository at this point in the history
* Re-export felt crate from cairo_vm to avoid version mismatches

* Update CHANGELOG

* Formatting
  • Loading branch information
Oppen authored Apr 17, 2023
1 parent ce0d096 commit 7fe94ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@
ids.root.d2 = root_split[2]
```

* Re-export the `cairo-felt` crate as `cairo_vm::felt` [#981](https://github.com/lambdaclass/cairo-rs/pull/981)
* Removes the need of explicitly importing `cairo-felt` in downstream projects
and helps ensure there is no version mismatch caused by that

* Implement hint on `uint256_mul_div_mod`[#957](https://github.com/lambdaclass/cairo-rs/pull/957)

`BuiltinHintProcessor` now supports the following hint:
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ mod stdlib {
pub use crate::without_std::*;
}

pub extern crate felt;
pub mod cairo_run;
pub mod hint_processor;
pub mod math_utils;
Expand Down

0 comments on commit 7fe94ef

Please sign in to comment.