Skip to content

Commit

Permalink
Update nearcore to protocol version 67 (#190)
Browse files Browse the repository at this point in the history
* chore: Update nearcore

* chore: Update rustc to 1.77.0
  • Loading branch information
Hyodar authored May 27, 2024
1 parent bf9601f commit 32cd6ca
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion contracts/near/sffl-agreement-registry/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.75"
channel = "1.77"
targets = ["wasm32-unknown-unknown"]
10 changes: 5 additions & 5 deletions indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ tracing = { version = "0.1.36", features = ["std"] }
thiserror = "1.0.56"
anyhow = "1.0.79"

near-indexer = { git = "https://github.com/near/nearcore", rev = "2b2c06edb90400fb934ae08a7083250266bff780" }
near-client = { git = "https://github.com/near/nearcore", rev = "2b2c06edb90400fb934ae08a7083250266bff780" }
near-o11y = { git = "https://github.com/near/nearcore", rev = "2b2c06edb90400fb934ae08a7083250266bff780" }
near-client-primitives = { git = "https://github.com/near/nearcore", rev = "2b2c06edb90400fb934ae08a7083250266bff780" }
near-indexer = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" }
near-client = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" }
near-o11y = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" }
near-client-primitives = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" }
borsh = { version = "1.0.0", features = ["derive", "rc"] }
serde_yaml = "0.9.34"

[dev-dependencies]
near-crypto = { git = "https://github.com/near/nearcore", rev = "2b2c06edb90400fb934ae08a7083250266bff780" }
near-crypto = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" }
2 changes: 1 addition & 1 deletion indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75 AS builder
FROM rust:1.77 AS builder
WORKDIR /tmp/indexer

# Copy from nearcore:
Expand Down
2 changes: 1 addition & 1 deletion relayer/cmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75 AS near-da-builder
FROM rust:1.77 AS near-da-builder

# Install cbindgen for C bindings compilation
RUN cargo install --force cbindgen
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# This specifies the version of Rust we use to build.
# Individual crates in the workspace may support a lower version, as indicated by `rust-version` field in each crate's `Cargo.toml`.
# The version specified below, should be at least as high as the maximum `rust-version` within the workspace.
channel = "1.75.0"
channel = "1.77.0"
components = [ "rustfmt", "clippy" ]
targets = [ "wasm32-unknown-unknown" ]

0 comments on commit 32cd6ca

Please sign in to comment.