diff --git a/CHANGELOG.md b/CHANGELOG.md index 42700cadf3..ac55718fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### Upcoming Changes +* chore: Pin types-rs version to 0.1.8 [#2146](https://github.com/lambdaclass/cairo-vm/pull/2146) + #### [2.3.0] - 2025-07-28 * dev: make `VirtualMachine::get_traceback_entries` pub [#2144](https://github.com/lambdaclass/cairo-vm/pull/2144) diff --git a/Cargo.lock b/Cargo.lock index abbe2c9c85..3040c300dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2978,6 +2978,12 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" +[[package]] +name = "size-of" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4e36eca171fddeda53901b0a436573b3f2391eaa9189d439b2bd8ea8cebd7e3" + [[package]] name = "slab" version = "0.4.10" @@ -3074,9 +3080,9 @@ dependencies = [ [[package]] name = "starknet-types-core" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa1b9e01ccb217ab6d475c5cda05dbb22c30029f7bb52b192a010a00d77a3d74" +checksum = "4037bcb26ce7c508448d221e570d075196fd4f6912ae6380981098937af9522a" dependencies = [ "arbitrary", "lambdaworks-crypto", @@ -3086,6 +3092,8 @@ dependencies = [ "num-integer", "num-traits", "serde", + "size-of", + "zeroize", ] [[package]] diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 0f920087f7..fe39e074f4 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -59,7 +59,7 @@ keccak = { workspace = true } hashbrown = { workspace = true } anyhow = { workspace = true } thiserror = { workspace = true } -starknet-types-core = { version = "=0.1.7", default-features = false, features = ["serde", "curve", "num-traits", "hash"] } +starknet-types-core = { version = "=0.1.8", default-features = false, features = ["serde", "curve", "num-traits", "hash"] } rust_decimal = { version = "1.35.0", default-features = false } # only for std