Skip to content

Commit 620c68d

Browse files
Merge branch '2.x.y' into store-idents-in-hints
2 parents 8a84677 + fd23bca commit 620c68d

File tree

4 files changed

+54
-24
lines changed

4 files changed

+54
-24
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
* breaking: Store constants in Hint Data [#2191](https://github.com/lambdaclass/cairo-vm/pull/2191)
66

7+
#### [2.4.0] - 2025-27-29
8+
9+
* chore: Bump types-rs to 0.2.0 [#2186](https://github.com/lambdaclass/cairo-vm/pull/2186)
10+
711
#### [2.3.1] - 2025-07-29
812

913
* chore: Pin types-rs version to 0.1.8 [#2146](https://github.com/lambdaclass/cairo-vm/pull/2146)

Cargo.lock

Lines changed: 45 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ exclude = ["ensure-no_std"]
1616
resolver = "2"
1717

1818
[workspace.package]
19-
version = "2.3.1"
19+
version = "2.4.0"
2020
edition = "2021"
2121
license = "Apache-2.0"
2222
repository = "https://github.com/lambdaclass/cairo-vm/"
2323
readme = "README.md"
2424
keywords = ["starknet", "cairo", "vm", "wasm", "no_std"]
2525

2626
[workspace.dependencies]
27-
cairo-vm = { path = "./vm", version = "2.3.1", default-features = false }
28-
cairo-vm-tracer = { path = "./cairo-vm-tracer", version = "2.3.1", default-features = false }
27+
cairo-vm = { path = "./vm", version = "2.4.0", default-features = false }
28+
cairo-vm-tracer = { path = "./cairo-vm-tracer", version = "2.4.0", default-features = false }
2929
mimalloc = { version = "0.1.37", default-features = false }
3030
num-bigint = { version = "0.4", default-features = false, features = [
3131
"serde",
@@ -43,7 +43,7 @@ hex = { version = "0.4.3", default-features = false }
4343
bincode = { version = "2.0.0-rc.3", default-features = false, features = [
4444
"serde",
4545
] }
46-
starknet-crypto = { version = "0.7.3", default-features = false, features = [
46+
starknet-crypto = { version = "0.8.0", default-features = false, features = [
4747
"signature-display",
4848
"alloc",
4949
] }

vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ keccak = { workspace = true }
5959
hashbrown = { workspace = true }
6060
anyhow = { workspace = true }
6161
thiserror = { workspace = true }
62-
starknet-types-core = { version = "=0.1.8", default-features = false, features = ["serde", "curve", "num-traits", "hash"] }
62+
starknet-types-core = { version = "0.2.0", default-features = false, features = ["serde", "curve", "num-traits", "hash"] }
6363
rust_decimal = { version = "1.35.0", default-features = false }
6464

6565
# only for std

0 commit comments

Comments
 (0)