Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit bb23ce8

Browse files
Merge branch 'main' into add-mainnet-test
2 parents 4a827c1 + cdf9880 commit bb23ce8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0"
77

88
[features]
99
default = ["with_mimalloc"]
10-
with_mimalloc = ["mimalloc"]
10+
with_mimalloc = ["dep:mimalloc"]
1111
cairo_1_tests = []
1212

1313
[workspace]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ CAIRO_2_COMPILED_SIERRA_CONTRACTS:=$(patsubst $(CAIRO_2_CONTRACTS_TEST_DIR)/%.ca
9898
CAIRO_2_COMPILED_CASM_CONTRACTS:= $(patsubst $(CAIRO_2_CONTRACTS_TEST_DIR)/%.sierra, $(CAIRO_2_CONTRACTS_TEST_DIR)/%.casm, $(CAIRO_2_COMPILED_SIERRA_CONTRACTS))
9999

100100
$(CAIRO_2_CONTRACTS_TEST_DIR)/%.sierra: $(CAIRO_2_CONTRACTS_TEST_DIR)/%.cairo
101-
$(STARKNET_COMPILE_CAIRO_2) --single-file $< $@
101+
$(STARKNET_COMPILE_CAIRO_2) $< $@
102102

103103
$(CAIRO_2_CONTRACTS_TEST_DIR)/%.casm: $(CAIRO_2_CONTRACTS_TEST_DIR)/%.sierra
104104
$(STARKNET_SIERRA_COMPILE_CAIRO_2) --add-pythonic-hints $< $@
@@ -107,7 +107,7 @@ compile-cairo-2-sierra: $(CAIRO_2_COMPILED_SIERRA_CONTRACTS)
107107
compile-cairo-2-casm: $(CAIRO_2_COMPILED_CASM_CONTRACTS)
108108

109109

110-
CAIRO_2_VERSION=2.1.0-rc2
110+
CAIRO_2_VERSION=2.0.2
111111

112112
cairo-repo-2-dir = cairo2
113113
cairo-repo-2-dir-macos = cairo2-macos

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ edition = "2021"
55

66
[features]
77
default = ["with_mimalloc"]
8-
with_mimalloc = ["mimalloc"]
8+
with_mimalloc = ["dep:mimalloc"]
99

1010
[dependencies]
1111
starknet_in_rust = { path = "../", version = "0.3.0" }
1212
num-traits = "0.2.15"
1313
serde = { version = "1.0.152", features = ["derive"] }
14-
cairo-vm = { workspace=true, features = ["cairo-1-hints"]}
14+
cairo-vm = { workspace = true, features = ["cairo-1-hints"] }
1515
clap = { version = "4.1.8", features = ["derive"] }
1616
actix-web = "4.3.1"
1717
awc = "3.1.1"

0 commit comments

Comments
 (0)