Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@ on:
pull_request:

jobs:
msrv:
name: Determine MSRV
runs-on: ubuntu-latest
outputs:
msrv: ${{ steps.msrv.outputs.msrv }}
steps:
- uses: actions/checkout@v6
- id: msrv
run: echo "msrv=$(grep '^rust-version' Cargo.toml | sed 's/.*"\(.*\)"/\1/')" >> "$GITHUB_OUTPUT"

test:
needs: msrv
strategy:
matrix:
os:
Expand All @@ -15,7 +26,7 @@ jobs:
- windows
toolchain:
- stable
- 1.86
- ${{ needs.msrv.outputs.msrv }}
name: cargo test on ${{ matrix.os }}, rust ${{ matrix.toolchain }}
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
rust-version = "1.86"

[workspace.dependencies]
columnar = "0.11"
Expand Down
3 changes: 2 additions & 1 deletion bytes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
name = "timely_bytes"
version = "0.26.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
edition = "2018"
edition.workspace = true
rust-version.workspace = true

description = "Disjoint mutable byte slices from a common allocation"

Expand Down
1 change: 1 addition & 0 deletions communication/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.26.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
description = "Communication layer for timely dataflow"
edition.workspace = true
rust-version.workspace = true

# These URLs point to more information about the repository

Expand Down
1 change: 1 addition & 0 deletions container/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.26.1"
description = "Container abstractions for Timely"
license = "MIT"
edition.workspace = true
rust-version.workspace = true

[lints]
workspace = true
1 change: 1 addition & 0 deletions logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.26.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
description = "Common timely logging infrastructure"
edition.workspace = true
rust-version.workspace = true

documentation = "https://docs.rs/timely/"
homepage = "https://github.com/TimelyDataflow/timely-dataflow"
Expand Down
1 change: 1 addition & 0 deletions mdbook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "mdbook"
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false

[lints]
Expand Down
1 change: 1 addition & 0 deletions timely/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.26.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
readme = "../README.md"
edition.workspace = true
rust-version.workspace = true
description = "A low-latency data-parallel dataflow system in Rust"

# These URLs point to more information about the repository
Expand Down
Loading