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: vm/Cargo.toml
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,20 @@ cairo-0-secp-hints = []
32
32
cairo-0-data-availability-hints = []
33
33
34
34
# Note that these features are not retro-compatible with the cairo Python VM.
35
-
test_utils = ["std", "dep:arbitrary", "starknet-types-core/arbitrary", "starknet-types-core/std"] # This feature will reference every test-oriented feature
35
+
test_utils = [
36
+
"std",
37
+
"dep:arbitrary",
38
+
"starknet-types-core/arbitrary",
39
+
"starknet-types-core/std",
40
+
] # This feature will reference every test-oriented feature
36
41
# Allows extending the set of hints for the current vm run from within a hint.
37
42
# For a usage example checkout vm/src/tests/run_deprecated_contract_class_simplified.rs
38
43
extensive_hints = []
39
44
40
45
[dependencies]
41
-
zip = { version = "0.6.6", optional = true, default-features = false, features = ["deflate"] }
46
+
zip = { version = "0.6.6", optional = true, default-features = false, features = [
47
+
"deflate",
48
+
] }
42
49
num-bigint = { workspace = true }
43
50
rand = { workspace = true }
44
51
num-traits = { workspace = true }
@@ -57,7 +64,12 @@ keccak = { workspace = true }
57
64
hashbrown = { workspace = true }
58
65
anyhow = { workspace = true }
59
66
thiserror = { workspace = true }
60
-
starknet-types-core = { version = "0.1.2", default-features = false, features = ["serde", "curve", "num-traits", "hash"] }
67
+
starknet-types-core = { version = "=0.1.8", default-features = false, features = [
68
+
"serde",
69
+
"curve",
70
+
"num-traits",
71
+
"hash",
72
+
] }
61
73
rust_decimal = { version = "1.35.0", default-features = false }
0 commit comments