Skip to content

Commit 83311f7

Browse files
committed
build(repo): Fix netlink-proto dependency
1 parent 2aa0422 commit 83311f7

File tree

18 files changed

+149
-154
lines changed

18 files changed

+149
-154
lines changed

.github/actions/setup-rust/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
toolchain:
1010
description: Rust toolchain version to install
1111
required: true
12-
default: 1.81.0
12+
default: 1.84.0
1313
cache:
1414
description: Use sscache
1515
required: false

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
CARGO_TERM_COLOR: always
1111
CLICOLOR: 1
12-
RUST_NIGHTLY_VERSION: nightly-2024-11-06
12+
RUST_NIGHTLY_VERSION: nightly-2025-01-24
1313
CI: true
1414

1515
concurrency:

.github/workflows/release-plz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- main
1111

1212
env:
13-
RUST_VERSION: 1.81.0
13+
RUST_VERSION: 1.84.0
1414

1515
jobs:
1616
# Release unpublished packages.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide will show you how to run this project locally if you want to test or
77
Most projects under the umbrella of data systems are written in Rust, so we prefer using Rust tooling and community standards. Ensure you have the following tools installed:
88

99
- [Rust](https://www.rust-lang.org/tools/install) (latest stable version recommended)
10-
- [Rust Nightly](https://rust-lang.github.io/rustup/concepts/channels.html) (version nightly-2024-11-06)
10+
- [Rust Nightly](https://rust-lang.github.io/rustup/concepts/channels.html) (version nightly-2025-01-24)
1111
- [Make](https://www.gnu.org/software/make/)
1212
- [Pre-commit](https://pre-commit.com/#install)
1313
- [NodeJS](https://nodejs.org/en/download/)
@@ -163,7 +163,7 @@ If you encounter any issues while setting up or contributing to the project, her
163163

164164
1. **Pre-commit hooks failing**: Ensure you've installed all the required dependencies and run `make setup`. If issues persist, try running `pre-commit run --all-files` to see detailed error messages.
165165

166-
2. **Build failures**: Make sure you're using the latest stable Rust version and the correct nightly version. You can update Rust using `rustup update stable` and `rustup update nightly-2024-11-06`.
166+
2. **Build failures**: Make sure you're using the latest stable Rust version and the correct nightly version. You can update Rust using `rustup update stable` and `rustup update nightly-2025-01-24`.
167167

168168
3. **Test failures**: If specific tests are failing, try running them in isolation to see if it's a concurrency issue. Use `RUST_BACKTRACE=1` to get more detailed error information.
169169

0 commit comments

Comments
 (0)