Skip to content

Commit

Permalink
chore: unpin nightly toolchain as not required with new hdt version, …
Browse files Browse the repository at this point in the history
…release 0.2.13
  • Loading branch information
KonradHoeffner committed Feb 20, 2024
1 parent 14a7588 commit 7c4839e
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 71 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/lint_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
components: rustfmt,clippy
toolchain: nightly-2024-01-31
toolchain: nightly # we want to know if it breaks with the newest nightly
# toolchain: nightly-2024-02-17
- name: fmt
run: cargo fmt --check
- name: clippy
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install rust
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-01-31
targets: x86_64-unknown-linux-musl
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
target: ${{ matrix.target }}
toolchain: nightly-2024-02-17
targets: ${{ matrix.target }}
- name: Set up cargo cache
uses: actions/cache@v4
continue-on-error: false
Expand Down
85 changes: 33 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rickview"
version = "0.2.12"
version = "0.2.13"
edition = "2021"
license = "MIT"
keywords = ["rdf", "semantic-web", "linked-data"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM clux/muslrust:1.77.0-nightly-2024-01-31 AS chef
FROM clux/muslrust:1.78.0-nightly-2024-02-17 AS chef
USER root
RUN cargo install cargo-chef
WORKDIR /app
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ On Arch Linux however, both `pacman -S rustup` and `pacman -S rust` worked in my

### Toolchain
The "hdt" feature, which is enabled by default, requires the nightly toolchain.
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.

## Configure
Default configuration is stored in `data/default.toml`, which you can override with a custom `data/config.toml` or environment variables.
Expand Down
6 changes: 0 additions & 6 deletions rust-toolchain.toml

This file was deleted.

0 comments on commit 7c4839e

Please sign in to comment.