Skip to content

Commit 626cedf

Browse files
authored
Update MSRV to 1.86 (#69)
1 parent dc7b7c1 commit 626cedf

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/deploy_web_demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
profile: minimal
4545
target: wasm32-unknown-unknown
46-
toolchain: 1.72.0
46+
toolchain: 1.86.0
4747
override: true
4848

4949
- uses: Swatinem/rust-cache@v2

.github/workflows/rust.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
toolchain: 1.72.0
21+
toolchain: 1.86.0
2222
override: true
2323
- uses: actions-rs/cargo@v1
2424
with:
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions-rs/toolchain@v1
3434
with:
3535
profile: minimal
36-
toolchain: 1.72.0
36+
toolchain: 1.86.0
3737
override: true
3838
- run: rustup target add wasm32-unknown-unknown
3939
- uses: actions-rs/cargo@v1
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions-rs/toolchain@v1
5050
with:
5151
profile: minimal
52-
toolchain: 1.72.0
52+
toolchain: 1.86.0
5353
override: true
5454
- uses: actions-rs/cargo@v1
5555
with:
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions-rs/toolchain@v1
6565
with:
6666
profile: minimal
67-
toolchain: 1.72.0
67+
toolchain: 1.86.0
6868
override: true
6969
- run: rustup component add rustfmt
7070
- uses: actions-rs/cargo@v1
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions-rs/toolchain@v1
8181
with:
8282
profile: minimal
83-
toolchain: 1.72.0
83+
toolchain: 1.86.0
8484
override: true
8585
- run: rustup component add clippy
8686
- uses: actions-rs/cargo@v1
@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions-rs/toolchain@v1
9797
with:
9898
profile: minimal
99-
toolchain: 1.72.0
99+
toolchain: 1.86.0
100100
override: true
101101
- run: cargo doc -p ehttp --lib --no-deps --all-features
102102

@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions-rs/toolchain@v1
109109
with:
110110
profile: minimal
111-
toolchain: 1.72.0
111+
toolchain: 1.86.0
112112
override: true
113113
- run: rustup target add wasm32-unknown-unknown
114114
- run: cargo doc -p ehttp --target wasm32-unknown-unknown --lib --no-deps --all-features

ehttp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.5.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
description = "Minimal HTTP client for both native and WASM"
66
edition = "2018"
7-
rust-version = "1.72"
7+
rust-version = "1.86"
88
homepage = "https://github.com/emilk/ehttp"
99
license = "MIT OR Apache-2.0"
1010
readme = "../README.md"

example_eframe/src/app.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use std::{
66
use eframe::egui;
77

88
#[derive(Debug, PartialEq, Copy, Clone)]
9-
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
109
enum Method {
1110
Get,
1211
Head,

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".
66

77
[toolchain]
8-
channel = "1.72.0"
8+
channel = "1.86.0"
99
components = [ "rustfmt", "clippy" ]
1010
targets = [ "wasm32-unknown-unknown" ]

0 commit comments

Comments
 (0)