Skip to content

Commit

Permalink
Cairo v0.8.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
liorgold2 committed May 9, 2022
1 parent b614d18 commit 082af75
Show file tree
Hide file tree
Showing 50 changed files with 2,651 additions and 140 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM ciimage/python:3.7

RUN apt update
RUN apt install -y make libgmp3-dev g++ python3-pip python3.7-dev python3.7-venv npm
RUN apt -y -o Dpkg::Options::="--force-overwrite" install python3.7-dev
RUN apt install -y make libgmp3-dev g++ python3-pip python3.7-venv npm
# Installing cmake via apt doesn't bring the most up-to-date version.
RUN pip install cmake==3.22

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Once the docker image is built, you can fetch the python package zip file using:

```bash
> container_id=$(docker create cairo)
> docker cp ${container_id}:/app/cairo-lang-0.8.1.zip .
> docker cp ${container_id}:/app/cairo-lang-0.8.2.zip .
> docker rm -v ${container_id}
```

7 changes: 7 additions & 0 deletions src/starkware/cairo/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ python_lib(cairo_common_lib
cairo_blake2s/blake2s_utils.py
cairo_blake2s/packed_blake2s.cairo
cairo_builtins.cairo
cairo_keccak/keccak.cairo
cairo_keccak/keccak_utils.py
cairo_keccak/packed_keccak.cairo
cairo_secp/bigint.cairo
cairo_secp/constants.cairo
cairo_secp/ec.cairo
cairo_secp/field.cairo
cairo_secp/secp_utils.py
cairo_secp/signature.cairo
cairo_sha256/sha256_utils.py
default_dict.cairo
dict_access.cairo
Expand Down
Loading

0 comments on commit 082af75

Please sign in to comment.