Skip to content

Commit 0fab998

Browse files
chore: increase minimum supported rust version to 1.64.0
Signed-off-by: Florentin Dubois <[email protected]>
1 parent 322bb52 commit 0fab998

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
rust:
12-
- 1.60.0
12+
- 1.64.0
1313
- stable
1414
- beta
1515
- nightly
@@ -31,7 +31,7 @@ jobs:
3131
fail-fast: true
3232
matrix:
3333
rust:
34-
- 1.60.0
34+
- 1.64.0
3535
- stable
3636
- beta
3737
- nightly

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "oauth10a"
33
description = "A rust implementation of the oauth 1.0a protocol fully-async with logging, metrics and tracing facilities"
44
version = "1.5.0"
55
edition = "2021"
6-
rust-version = "1.60.0"
6+
rust-version = "1.64.0"
77
authors = ["Florentin Dubois <[email protected]>"]
88
license-file = "LICENSE"
99
readme = "README.md"

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.60.0
1+
1.64.0

src/client/proxy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ where
455455
pub fn new() -> Self {
456456
Self {
457457
proxies: vec![],
458-
phantom: PhantomData::default(),
458+
phantom: Default::default(),
459459
}
460460
}
461461

0 commit comments

Comments
 (0)