Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fixed README formatting & updated toolchain #334

Merged
merged 9 commits into from
Oct 15, 2024
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.78.0
toolchain: 1.81
- name: Setup build deps
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
sudo apt-get install -y clang llvm libudev-dev protobuf-compiler gcc g++ build-essential libssl-dev pkg-config curl wget git
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78
toolchain: 1.81

- uses: Swatinem/rust-cache@v2 # use a different cache key as coverae uses custom rustc args
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
shared-key: "cache"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78
toolchain: 1.81
components: rustfmt, clippy

- uses: software-mansion/setup-scarb@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
shared-key: "cache"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78
toolchain: 1.81

- uses: software-mansion/setup-scarb@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
shared-key: "cache"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78
toolchain: 1.81

- uses: foundry-rs/foundry-toolchain@v1
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Next release

- chore: Fixed README table format
- fix(cli): fixed devnet cli arguments
- fix(db): max rocksdb LOG files count and size and add more memory metrics
- fix(devnet): devnet predeployed contracts stable address across systems
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build the application
FROM rust:1.78 AS builder
FROM rust:1.81 AS builder
# Install build dependencies
RUN apt-get -y update && \
apt-get install -y clang && \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ Madara is a powerful Starknet client written in Rust.

Ensure you have the necessary dependencies:

| Dependency | Version | Installation |
| ---------- | ---------- | --------------------------------------------------------------------------------- | --- |
| Rust | rustc 1.78 | `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` |
| Clang | Latest | `sudo apt-get install clang` |
| Scarb | v2.8.2 | `curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh` |
| Dependency | Version | Installation |
| ---------- | ---------- | ---------------------------------------------------------------------------------------- |
| Rust | rustc 1.81 | `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \| sh` |
| Clang | Latest | `sudo apt-get install clang` |
| Scarb | v2.8.2 | `curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh \| sh` |

Clone the Madara repository:

Expand Down
Loading