Skip to content

Commit 538c2dd

Browse files
committed
chore: Update MSRV to 1.80
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent c3ee65d commit 538c2dd

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175

176176
- uses: dtolnay/rust-toolchain@master
177177
with:
178-
toolchain: "1.75"
178+
toolchain: "1.80"
179179

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

201+
- run: cargo update -p indexmap --precise 2.11.0
202+
working-directory: ./css-inline
203+
201204
- run: cargo build
202205
working-directory: ./css-inline
203206

@@ -232,6 +235,8 @@ jobs:
232235
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
233236
build: |-
234237
set -e &&
238+
rustup toolchain install 1.83 &&
239+
rustup default 1.83 &&
235240
yarn build --target x86_64-unknown-linux-gnu &&
236241
strip *.node
237242
- host: ubuntu-22.04
@@ -243,6 +248,9 @@ jobs:
243248
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
244249
build: |-
245250
set -e &&
251+
rustup toolchain install 1.83 &&
252+
rustup default 1.83 &&
253+
rustup target add aarch64-unknown-linux-gnu &&
246254
yarn build --target aarch64-unknown-linux-gnu &&
247255
aarch64-unknown-linux-gnu-strip *.node
248256
- host: ubuntu-22.04

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To include it in your project, add the following line to the dependencies sectio
5757
css-inline = "0.17"
5858
```
5959

60-
The Minimum Supported Rust Version is 1.75.
60+
The Minimum Supported Rust Version is 1.80.
6161

6262
## Usage
6363

bindings/c/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

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

9+
### Changed
10+
11+
- Bump MSRV to `1.80`.
12+
913
## [0.17.0] - 2025-07-26
1014

1115
### Added

0 commit comments

Comments
 (0)