Skip to content

Commit

Permalink
version bump (#61)
Browse files Browse the repository at this point in the history
* version bump

* toolchain defs improved
  • Loading branch information
Okm165 authored Dec 28, 2024
1 parent 6c37e75 commit 36f2ea5
Show file tree
Hide file tree
Showing 17 changed files with 310 additions and 192 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Thumbs.db
.git
.gitignore

Dockerfile
Dockerfile
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Run verification
run: cargo run -r --bin swiftness --features ${{ matrix.layout }},stone5,keccak_160_lsb --no-default-features -- --proof ${{ env.PROOFS_DIR }}/${{ matrix.layout }}/cairo0_stone5_example_proof.json
working-directory: ${{ env.WORKING_DIR }}

verify-proofs-stone6-blake2s-248-lsb:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -143,7 +143,13 @@ jobs:
layout: ["dynamic"]
hash: ["blake2s_248_lsb"]
stone: ["stone5"]
target: ["armebv7r-none-eabi", "riscv64imac-unknown-none-elf", "aarch64-unknown-none-softfloat", "aarch64-unknown-none"]
target:
[
"armebv7r-none-eabi",
"riscv64imac-unknown-none-elf",
"aarch64-unknown-none-softfloat",
"aarch64-unknown-none",
]

env:
WORKING_DIR: ${{ github.workspace }}/examples/no_std_build
Expand Down Expand Up @@ -178,7 +184,7 @@ jobs:
working-directory: ${{ env.WORKING_DIR }}

- name: Build project
run: cargo build -r --features ${{ matrix.layout }},${{ matrix.hash }},${{ matrix.stone }} --no-default-features --target ${{ matrix.target }}
run: cargo build -Zbuild-std=core,alloc -r --features ${{ matrix.layout }},${{ matrix.hash }},${{ matrix.stone }} --no-default-features --target ${{ matrix.target }}
working-directory: ${{ env.WORKING_DIR }}

- name: Print binary metadata
Expand Down
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ edition = "2021"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/iosis-tech/swiftness"
version = "0.1.2"
version = "0.1.3"

[workspace.dependencies]
blake2 = { version = "0.10.6", default-features = false }
Expand All @@ -39,9 +39,9 @@ starknet-types-core = { version = "0.1.5", default-features = false }
thiserror = "1.0.61"
thiserror-no-std = "2.0.2"

swiftness_air = { path = "crates/air", default-features = false, version = "0.1.2" }
swiftness_commitment = { path = "crates/commitment", default-features = false, version = "0.1.2" }
swiftness_fri = { path = "crates/fri", default-features = false, version = "0.1.2" }
swiftness_pow = { path = "crates/pow", default-features = false, version = "0.1.2" }
swiftness_stark = { path = "crates/stark", default-features = false, version = "0.1.2" }
swiftness_transcript = { path = "crates/transcript", default-features = false, version = "0.1.2" }
swiftness_air = { path = "crates/air", default-features = false, version = "0.1.3" }
swiftness_commitment = { path = "crates/commitment", default-features = false, version = "0.1.3" }
swiftness_fri = { path = "crates/fri", default-features = false, version = "0.1.3" }
swiftness_pow = { path = "crates/pow", default-features = false, version = "0.1.3" }
swiftness_stark = { path = "crates/stark", default-features = false, version = "0.1.3" }
swiftness_transcript = { path = "crates/transcript", default-features = false, version = "0.1.3" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center">

![Version](https://img.shields.io/badge/v0.1.2-green?style=flat-square&logo=git&logoColor=white&label=version)
![Version](https://img.shields.io/badge/v0.1.3-green?style=flat-square&logo=git&logoColor=white&label=version)
![Continuous Integration](https://img.shields.io/github/actions/workflow/status/iosis-tech/swiftness/ci.yml?style=flat-square&logo=githubactions&logoColor=white&label=Continuous%20Integration)

[![Crates.io Version](https://img.shields.io/crates/v/swiftness?style=flat-square&logo=lootcrate)](https://crates.io/crates/swiftness)
Expand Down
Loading

0 comments on commit 36f2ea5

Please sign in to comment.