lambdaclass / cairo-vm

cairo-vm is a Rust implementation of the Cairo VM. Cairo (CPU Algebraic Intermediate Representation) is a programming language for writing provable programs, where one party can prove to another that a certain computation was executed correctly without the need for this party to re-execute the same program.
https://lambdaclass.github.io/cairo-vm
Apache License 2.0
522 stars 150 forks source link

Unpin wasm bindgen deps #1871

Open pefontana opened 1 week ago

pefontana commented 1 week ago

Right now we have pinned the wasm-bindgen deps wasm-bindgen = { version = "= 0.2.92" } This can be a little bit annoying for people that use cairo-vm as a library, so, it would be good to unpin the deps The problem is that when we unpin it we get some errors with the no-std compilation. see https://github.com/lambdaclass/cairo-vm/pull/1847 I think that we a little research we can come out with a solution