You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
## Cairo-VM Changelog
2
2
3
3
#### Upcoming Changes
4
+
5
+
* chore: Pin types-rs version to the one set in lockfile [#2140](https://github.com/lambdaclass/cairo-vm/pull/2140)
6
+
4
7
* BREAKING CHANGE: `get_prover_input_info()` now requires `&mut self` and takes ownershop on the trace instead of cloning it. [#2127](https://github.com/lambdaclass/cairo-vm/pull/2127)
5
8
6
9
* Refactor: Replaced HashMap with BTreeMap to guarantee deterministic ordering of the data [#2023] (https://github.com/lambdaclass/cairo-vm/pull/2023)
Copy file name to clipboardExpand all lines: vm/Cargo.toml
+18-6Lines changed: 18 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -33,21 +33,28 @@ cairo-0-secp-hints = []
33
33
cairo-0-data-availability-hints = []
34
34
35
35
# Note that these features are not retro-compatible with the cairo Python VM.
36
-
test_utils = ["std", "dep:arbitrary", "starknet-types-core/arbitrary", "starknet-types-core/std"] # This feature will reference every test-oriented feature
36
+
test_utils = [
37
+
"std",
38
+
"dep:arbitrary",
39
+
"starknet-types-core/arbitrary",
40
+
"starknet-types-core/std",
41
+
] # This feature will reference every test-oriented feature
37
42
# Allows extending the set of hints for the current vm run from within a hint.
38
43
# For a usage example checkout vm/src/tests/run_deprecated_contract_class_simplified.rs
39
44
extensive_hints = []
40
45
41
46
[dependencies]
42
-
zip = { version = "0.6.6", optional = true, default-features = false, features = ["deflate"] }
47
+
zip = { version = "0.6.6", optional = true, default-features = false, features = [
48
+
"deflate",
49
+
] }
43
50
num-bigint = { workspace = true }
44
51
rand = { workspace = true }
45
52
num-traits = { workspace = true }
46
53
num-integer = { workspace = true }
47
54
serde = { workspace = true }
48
55
serde_json = { workspace = true }
49
56
hex = { workspace = true }
50
-
bincode = { workspace = true, features = ["alloc"]}
57
+
bincode = { workspace = true, features = ["alloc"]}
51
58
starknet-crypto = { workspace = true }
52
59
sha3 = { workspace = true }
53
60
indoc = { workspace = true }
@@ -59,7 +66,12 @@ keccak = { workspace = true }
59
66
hashbrown = { workspace = true }
60
67
anyhow = { workspace = true }
61
68
thiserror = { workspace = true }
62
-
starknet-types-core = { version = "=0.1.8", default-features = false, features = ["serde", "curve", "num-traits", "hash"] }
69
+
starknet-types-core = { version = "=0.1.8", default-features = false, features = [
70
+
"serde",
71
+
"curve",
72
+
"num-traits",
73
+
"hash",
74
+
] }
63
75
rust_decimal = { version = "1.35.0", default-features = false }
0 commit comments