From 7af00641014f295d820cbc6417714d6470823440 Mon Sep 17 00:00:00 2001 From: Edgar Date: Fri, 22 Dec 2023 15:46:46 +0100 Subject: [PATCH] update starknet-types-core to 0.0.5 (#1524) * update starknet-types-core to 0.0.5 * update changelog --- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- vm/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b627a8f9eb..40f85f5d5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ #### Upcoming Changes -* feat(BREAKING): Replace `cairo-felt` crate with `starknet-types-core` [#1408](https://github.com/lambdaclass/cairo-vm/pull/1408) +* feat(BREAKING): Replace `cairo-felt` crate with `starknet-types-core` (0.0.5) [#1408](https://github.com/lambdaclass/cairo-vm/pull/1408) * feat(BREAKING): Add Cairo 1 proof mode compilation and execution [#1517] (https://github.com/lambdaclass/cairo-vm/pull/1517) * In the cairo1-run crate, now the Cairo 1 Programs are compiled and executed in proof-mode diff --git a/Cargo.lock b/Cargo.lock index 2306a67d0f..51bfb9f3dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2450,9 +2450,9 @@ dependencies = [ [[package]] name = "starknet-types-core" -version = "0.0.4" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b4af540664e3dec02f36a47b79ba4df825a7752bf0941954f69753a98a397e" +checksum = "b2441eb61d91a6bae832fda48e50b6ff09faa6cf63bfadd22dc16798d2cc024d" dependencies = [ "arbitrary", "bitvec", diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 67634489eb..4ca5ddb687 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -61,7 +61,7 @@ keccak = { workspace = true } hashbrown = { workspace = true } anyhow = { workspace = true } thiserror-no-std = { workspace = true } -starknet-types-core = { version = "0.0.4", default-features = false, features = ["serde"] } +starknet-types-core = { version = "0.0.5", default-features = false, features = ["serde"] } # only for std num-prime = { version = "0.4.3", features = ["big-int"], optional = true }