Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
if: ${{ matrix.target != 'test-doctests' }}
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
tool: cargo-nextest@0.9.49

- name: Run tests (${{ matrix.target }})
run: make ${{ matrix.target }}
Expand All @@ -242,7 +242,7 @@ jobs:
- name: Install testing tools
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,cargo-llvm-cov
tool: cargo-nextest@0.9.49,cargo-llvm-cov

- uses: Swatinem/rust-cache@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet_in_rust"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "A Rust implementation of Starknet execution logic"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ deps: check-python-version build-cairo-2-compiler build-cairo-1-compiler
cargo install cargo-llvm-cov --version 0.5.14
python3.9 -m venv starknet-venv
. starknet-venv/bin/activate && $(MAKE) deps-venv
cargo install nextest
cargo install cargo-nextest --version 0.9.49

deps-macos: check-python-version build-cairo-2-compiler-macos build-cairo-1-compiler-macos
cargo install flamegraph --version 0.6.2
cargo install cargo-llvm-cov --version 0.5.14
python3.9 -m venv starknet-venv
. starknet-venv/bin/activate && $(MAKE) deps-venv
cargo install nextest
cargo install cargo-nextest

clean:
-rm -rf starknet-venv/
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "starknet-rs-cli"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[features]
default = ["with_mimalloc"]
with_mimalloc = ["dep:mimalloc"]

[dependencies]
starknet_in_rust = { path = "../", version = "0.3.0" }
starknet_in_rust = { path = "../", version = "0.3.1" }
num-traits = "0.2.15"
serde = { version = "1.0.152", features = ["derive"] }
cairo-vm = { workspace = true, features = ["cairo-1-hints"] }
Expand Down
4 changes: 2 additions & 2 deletions fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fuzzer"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
honggfuzz = "0.5.55"
starknet_in_rust = { path = "../", version = "0.3.0" }
starknet_in_rust = { path = "../", version = "0.3.1" }
num-traits = { workspace = true }
starknet_api = { workspace = true }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
Expand Down
4 changes: 2 additions & 2 deletions rpc_state_reader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "rpc_state_reader"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
starknet_in_rust = { path = "../", version = "0.3.0" }
starknet_in_rust = { path = "../", version = "0.3.1" }
ureq = { version = "2.7.1", features = ["json"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0", features = [
Expand Down