Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.75"
toolchain: "1.80"

- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -198,6 +198,9 @@ jobs:
- run: cargo update -p zerofrom --precise 0.1.5
working-directory: ./css-inline

- run: cargo update -p indexmap --precise 2.11.0
working-directory: ./css-inline

- run: cargo build
working-directory: ./css-inline

Expand Down Expand Up @@ -232,6 +235,8 @@ jobs:
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: |-
set -e &&
rustup toolchain install 1.83 &&
rustup default 1.83 &&
yarn build --target x86_64-unknown-linux-gnu &&
strip *.node
- host: ubuntu-22.04
Expand All @@ -243,6 +248,9 @@ jobs:
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
build: |-
set -e &&
rustup toolchain install 1.83 &&
rustup default 1.83 &&
rustup target add aarch64-unknown-linux-gnu &&
yarn build --target aarch64-unknown-linux-gnu &&
aarch64-unknown-linux-gnu-strip *.node
- host: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ To include it in your project, add the following line to the dependencies sectio
css-inline = "0.17"
```

The Minimum Supported Rust Version is 1.75.
The Minimum Supported Rust Version is 1.80.

## Usage

Expand Down
4 changes: 4 additions & 0 deletions bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- `minify_css` option [#12](https://github.com/Stranger6667/css-inline/issues/12)

### Changed

- Bump MSRV to `1.80`.

## [0.17.0] - 2025-07-26

### Added
Expand Down
Loading