Skip to content

Commit 7c4839e

Browse files
chore: unpin nightly toolchain as not required with new hdt version, release 0.2.13
1 parent 14a7588 commit 7c4839e

File tree

7 files changed

+40
-71
lines changed

7 files changed

+40
-71
lines changed

.github/workflows/lint_and_build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
uses: dtolnay/rust-toolchain@master
3939
with:
4040
components: rustfmt,clippy
41-
toolchain: nightly-2024-01-31
41+
toolchain: nightly # we want to know if it breaks with the newest nightly
42+
# toolchain: nightly-2024-02-17
4243
- name: fmt
4344
run: cargo fmt --check
4445
- name: clippy

.github/workflows/release.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,10 @@ jobs:
6666
- name: Checkout
6767
uses: actions/checkout@v4
6868
- name: Install rust
69-
uses: dtolnay/rust-toolchain@nightly
69+
uses: dtolnay/rust-toolchain@master
7070
with:
71-
toolchain: nightly-2024-01-31
72-
targets: x86_64-unknown-linux-musl
73-
- name: Setup rust
74-
uses: actions-rs/toolchain@v1
75-
with:
76-
toolchain: nightly
77-
override: true
78-
target: ${{ matrix.target }}
71+
toolchain: nightly-2024-02-17
72+
targets: ${{ matrix.target }}
7973
- name: Set up cargo cache
8074
uses: actions/cache@v4
8175
continue-on-error: false

Cargo.lock

Lines changed: 33 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rickview"
3-
version = "0.2.12"
3+
version = "0.2.13"
44
edition = "2021"
55
license = "MIT"
66
keywords = ["rdf", "semantic-web", "linked-data"]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM clux/muslrust:1.77.0-nightly-2024-01-31 AS chef
2+
FROM clux/muslrust:1.78.0-nightly-2024-02-17 AS chef
33
USER root
44
RUN cargo install cargo-chef
55
WORKDIR /app

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ On Arch Linux however, both `pacman -S rustup` and `pacman -S rust` worked in my
4949

5050
### Toolchain
5151
The "hdt" feature, which is enabled by default, requires the nightly toolchain.
52-
Due to an [issue with a dependency of that feature](https://github.com/rust-lang/packed_simd/issues/359), nightly rust 1.77.0 (2023-01-31) is currently highest supported version.
5352

5453
## Configure
5554
Default configuration is stored in `data/default.toml`, which you can override with a custom `data/config.toml` or environment variables.

rust-toolchain.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)