diff --git a/.github/workflows/gas_reports.yml b/.github/workflows/gas_reports.yml index e838fb817..66416ba19 100644 --- a/.github/workflows/gas_reports.yml +++ b/.github/workflows/gas_reports.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Scarb uses: software-mansion/setup-scarb@v1 with: - scarb-version: 2.3.0-rc1 + scarb-version: 2.3.0 - name: Run compare_snapshot script id: run-script diff --git a/.github/workflows/gas_snapshot.yml b/.github/workflows/gas_snapshot.yml index edc8d1dd4..be98a2701 100644 --- a/.github/workflows/gas_snapshot.yml +++ b/.github/workflows/gas_snapshot.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Scarb uses: software-mansion/setup-scarb@v1 with: - scarb-version: 2.3.0-rc1 + scarb-version: 2.3.0 - name: Generate gas snapshot run: python scripts/gen_snapshot.py diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 72381644a..64323631b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: software-mansion/setup-scarb@v1 with: - scarb-version: 2.3.0-rc1 + scarb-version: 2.3.0 - run: scarb fmt --check - run: scarb build - run: scarb test diff --git a/.tool-versions b/.tool-versions index ff11276f7..e56a5760f 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -scarb 2.3.0-rc1 +scarb 2.3.0 diff --git a/Scarb.lock b/Scarb.lock new file mode 100644 index 000000000..47014a7ce --- /dev/null +++ b/Scarb.lock @@ -0,0 +1,45 @@ +# Code generated by scarb DO NOT EDIT. +version = 1 + +[[package]] +name = "alexandria_storage" +version = "0.2.0" +source = "git+https://github.com/keep-starknet-strange/alexandria.git?rev=3356bf0c5c1a089167d7d3c28d543e195325e596#3356bf0c5c1a089167d7d3c28d543e195325e596" + +[[package]] +name = "contracts" +version = "0.1.0" +dependencies = [ + "alexandria_storage", + "evm", + "openzeppelin", + "utils", +] + +[[package]] +name = "eoa" +version = "0.1.0" +dependencies = [ + "evm", +] + +[[package]] +name = "evm" +version = "0.1.0" +dependencies = [ + "contracts", + "eoa", + "openzeppelin", + "utils", +] + +[[package]] +name = "openzeppelin" +version = "0.1.0" + +[[package]] +name = "utils" +version = "0.1.0" +dependencies = [ + "evm", +] diff --git a/Scarb.toml b/Scarb.toml index d089247ae..910c591fc 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -4,14 +4,14 @@ members = ["crates/*"] [workspace.package] description = "Kakarot is an (zk)-Ethereum Virtual Machine implementation written in Cairo." documentation = "https://www.kakarot.org/" -cairo-version = "2.3.0-rc0" +cairo-version = "2.3.0" version = "0.1.0" readme = "README.md" repository = "https://github.com/kkrt-labs/kakarot-ssj/" license-file = "LICENSE" [workspace.dependencies] -starknet = "2.3.0-rc0" +starknet = "2.3.0" [[workspace.tool.starknet-contract]]