Skip to content

Commit 3cf41d7

Browse files
Merge pull request #39 from CleverCloud/devel/fdubois/chore/update-deps
chore: update dependencies
2 parents c4213fc + 0fab998 commit 3cf41d7

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
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: 14 additions & 14 deletions
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"
@@ -19,31 +19,31 @@ keywords = [
1919
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020

2121
[dependencies]
22-
async-trait = { version = "^0.1.68", optional = true }
23-
base64 = { version = "^0.21.0", optional = true }
22+
async-trait = { version = "^0.1.72", optional = true }
23+
base64 = { version = "^0.21.2", optional = true }
2424
bytes = { version = "^1.4.0", features = ["serde"], optional = true }
25-
cidr = { version = "^0.2.1", optional = true }
25+
cidr = { version = "^0.2.2", optional = true }
2626
crypto-common = { version = "^0.1.6", optional = true }
2727
headers = { version = "^0.3.8", optional = true }
2828
hmac = { version = "^0.12.1", features = ["std"], optional = true }
29-
hyper = { version = "^0.14.26", default-features = false, optional = true }
29+
hyper = { version = "^0.14.27", default-features = false, optional = true }
3030
hyper-rustls = { version = "^0.24.0", default-features= false, features = ["webpki-tokio", "http1", "tls12"], optional = true }
3131
hyper-proxy = { version = "^0.9.1", default-features = false, features = ["rustls-webpki"], optional = true }
32-
once_cell = { version = "^1.17.1", optional = true }
33-
log = { version = "^0.4.17", optional = true }
32+
once_cell = { version = "^1.18.0", optional = true }
33+
log = { version = "^0.4.19", optional = true }
3434
prometheus = { version = "^0.13.3", optional = true }
35-
serde = { version = "^1.0.163", features = ["derive"], optional = true }
36-
serde_json = { version = "^1.0.96", features = [
35+
serde = { version = "^1.0.179", features = ["derive"], optional = true }
36+
serde_json = { version = "^1.0.104", features = [
3737
"preserve_order",
3838
"float_roundtrip",
3939
], optional = true }
40-
sha2 = { version = "^0.10.6", optional = true }
41-
thiserror = { version = "^1.0.40", optional = true }
40+
sha2 = { version = "^0.10.7", optional = true }
41+
thiserror = { version = "^1.0.44", optional = true }
4242
tracing = { version = "^0.1.37", optional = true }
4343
tracing-futures = { version = "^0.2.5", optional = true }
44-
url = { version = "^2.3.1", default-features = false, features = ["serde"], optional = true }
45-
urlencoding = { version = "^2.1.2", optional = true }
46-
uuid = { version = "^1.3.3", features = ["serde", "v4"], optional = true }
44+
url = { version = "^2.4.0", default-features = false, features = ["serde"], optional = true }
45+
urlencoding = { version = "^2.1.3", optional = true }
46+
uuid = { version = "^1.4.1", features = ["serde", "v4"], optional = true }
4747

4848
[features]
4949
default = ["client", "proxy", "logging"]

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)