Skip to content

Commit

Permalink
downgrade the dependecnies
Browse files Browse the repository at this point in the history
  • Loading branch information
sczembor committed Mar 7, 2024
1 parent 2f62a33 commit f8c34b2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-casper-rust-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt, clippy
toolchain: nightly-2023-03-25
# Needed for gcc install
- run: sudo apt update && sudo apt install -y build-essential
- run: make prepare
- run: make check-lint
- run: make test
3 changes: 1 addition & 2 deletions .github/workflows/nightly-scheduled-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ jobs:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt, clippy
toolchain: nightly
# Needed for gcc install
- run: sudo apt update && sudo apt install -y build-essential
- run: make prepare
Expand Down
4 changes: 2 additions & 2 deletions contract-v1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["CasperLabs <https://discord.com/invite/Q38s3Vh>"]
edition = "2021"

[dependencies]
casper-contract = "4.0.0"
casper-types = "4.0.1"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "counter-v1"
Expand Down
4 changes: 2 additions & 2 deletions contract-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "1.0.0"
edition = "2021"

[dependencies]
casper-contract = "4.0.0"
casper-types = "4.0.1"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "counter-v2"
Expand Down
4 changes: 2 additions & 2 deletions counter-call/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["CasperLabs <https://discord.com/invite/Q38s3Vh>"]
edition = "2021"

[dependencies]
casper-contract = "4.0.0"
casper-types = "4.0.1"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "counter-call"
Expand Down
6 changes: 3 additions & 3 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = ["CasperLabs <https://discord.com/invite/Q38s3Vh>"]
edition = "2021"

[dependencies]
casper-engine-test-support = { version = "7.0.1", features = ["test-support"] }
casper-execution-engine = "7.0.1"
casper-types = "4.0.1"
casper-engine-test-support = { version = "5.0.0", features = ["test-support"] }
casper-execution-engine = "5.0.0"
casper-types = "3.0.0"

[[bin]]
name = "integration-tests"
Expand Down

0 comments on commit f8c34b2

Please sign in to comment.