Skip to content

Commit 28b2e39

Browse files
coolreader18Centril
authored andcommitted
Bump rust-toolchain to rust 1.87
1 parent edcb07c commit 28b2e39

15 files changed

Lines changed: 18 additions & 7 deletions

File tree

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
runs-on: ubuntu-latest
184184
timeout-minutes: 20 # on a successful run, runs in 8 minutes
185185
container:
186-
image: rust:1.83.0
186+
image: rust:1.87.0
187187
options: --privileged
188188
# filter for a comment containing 'benchmarks please'
189189
if: ${{ github.event_name != 'issue_comment' || (github.event.issue.pull_request && contains(github.event.comment.body, 'benchmarks please')) }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ debug = true
9090
version = "1.2.0"
9191
edition = "2021"
9292
# update rust-toolchain.toml too!
93-
rust-version = "1.84.0"
93+
rust-version = "1.87.0"
9494

9595
[workspace.dependencies]
9696
spacetimedb = { path = "crates/bindings", version = "1.2.0" }

crates/bench/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# See the README for commands to run.
44

55
# sync with: ../../rust-toolchain.toml
6-
FROM rust:1.84.0
6+
FROM rust:1.87.0
77

88
RUN apt-get update && \
99
apt-get install -y valgrind bash && \

crates/client-api-messages/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "Types for the SpacetimeDB client API messages"
7+
rust-version.workspace = true
78

89
[dependencies]
910
spacetimedb-lib = { workspace = true, features = ["serde"] }

crates/client-api/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "The HTTP API for SpacetimeDB"
7+
rust-version.workspace = true
78

89
[dependencies]
910
spacetimedb-client-api-messages.workspace = true

crates/data-structures/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "Assorted data structures used in spacetimedb"
7+
rust-version.workspace = true
78

89
[features]
910
memory-usage = ["dep:spacetimedb-memory-usage"]

crates/metrics/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "Prometheus utilities for SpacetimeDB"
7+
rust-version.workspace = true
78

89
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
910

crates/primitives/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "Primitives such as TableId and ColumnIndexAttribute"
7+
rust-version.workspace = true
78

89
[features]
910
memory-usage = ["dep:spacetimedb-memory-usage"]

crates/sats/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "Spacetime Algebraic Type Notation"
7+
rust-version.workspace = true
78

89
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
910

crates/sdk/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version.workspace = true
44
edition.workspace = true
55
license-file = "LICENSE"
66
description = "A Rust SDK for clients to interface with SpacetimeDB"
7+
rust-version.workspace = true
78

89
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
910

0 commit comments

Comments
 (0)