Skip to content

Commit

Permalink
feat: add ed25519_verify host function (#1010)
Browse files Browse the repository at this point in the history
  • Loading branch information
medicz authored Jun 14, 2023
1 parent 17b6cae commit 42632a0
Show file tree
Hide file tree
Showing 36 changed files with 24,090 additions and 7,922 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
toolchain: [stable, 1.68.2]
toolchain: [stable, 1.69.0]
steps:
- uses: actions/checkout@v3
- name: "${{ matrix.toolchain }} with rustfmt, and wasm32"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
toolchain: [stable]
# after fix of https://github.com/near/nearcore/pull/9140#issuecomment-1576655073, it should be [stable]
toolchain: [1.69.0]
example: [cross-contract-calls, fungible-token]

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_examples_small.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
toolchain: [stable]
# after fix of https://github.com/near/nearcore/pull/9140#issuecomment-1576655073, it should be [stable]
toolchain: [1.69.0]
steps:
- uses: actions/checkout@v3
- name: "${{ matrix.toolchain }} with rustfmt, clippy, and wasm32"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ State breaking changes (low-level serialization format of any data type) will be

### MSRV

The minimum supported Rust version is currently `1.68`. There are no guarantees that this will be upheld if a security patch release needs to come in that requires a Rust toolchain increase.
The minimum supported Rust version is currently `1.69`. There are no guarantees that this will be upheld if a security patch release needs to come in that requires a Rust toolchain increase.

## Contributing

Expand Down
4 changes: 2 additions & 2 deletions contract-builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM rust:1.68.2
FROM rust:1.69.0

LABEL description="Container for builds"

RUN rustup default 1.68.2
RUN rustup default 1.69.0
RUN rustup target add wasm32-unknown-unknown

RUN apt-get -y update && apt-get install -y \
Expand Down
Loading

0 comments on commit 42632a0

Please sign in to comment.