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

versions up, removed old 'bug killer' dependency #121

Merged
merged 12 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/ci-casper-rust-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [16.x]
node-version: [20.x]

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions cep18-test-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ doctest = false
test = false

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"
7 changes: 3 additions & 4 deletions cep18/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ test = false

[dependencies]
base64 = { version = "0.20.0", default-features = false, features = ["alloc"] }
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"
hex = { version = "0.4.3", default-features = false }
once_cell = { version = "1.16.0", default-features = false }
casper-event-standard = { version = "0.3.0", default-features = false }
getrandom = { version = "0.2", features = ["js"] }
casper-event-standard = { version = "0.4.1", default-features = false }
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2023-01-09
nightly-2023-03-25
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 @@ edition = "2018"
authors = ["Michał Papierski <[email protected]>"]

[dependencies]
casper-types = "2.0.0"
casper-engine-test-support = "4.0.0"
casper-execution-engine = "4.0.0"
casper-types = "3.0.0"
casper-engine-test-support = "5.0.0"
casper-execution-engine = "5.0.0"
once_cell = "1.16.0"

[lib]
Expand Down
Loading