Skip to content

Commit 58189b3

Browse files
committed
Bump yup-oauth2 to the latest version, bringing in hyper-rustls v0.24.
We consider this a breaking change as `cargo-update` updates `yup-oauth2` but not the explicitly mentioned `hyper-rustls`.
1 parent 343b479 commit 58189b3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

google-apis-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "google-apis-common"
3-
version = "5.0.4"
3+
version = "6.0.0"
44
authors = ["Sebastian Thiel <[email protected]>"]
55
repository = "https://github.com/Byron/google-apis-rs"
66
homepage = "https://github.com/Byron/google-apis-rs/google-apis-common"
@@ -26,7 +26,7 @@ chrono = { version = "0.4.22", default-features = false, features = ["clock", "s
2626
url = "= 1.7"
2727

2828
# 8.1 needed for hyper-rustls 0.23, as >= 8.2 comes with 0.24 which is incompatible
29-
yup-oauth2 = { version = "= 8.1", optional = true }
29+
yup-oauth2 = { version = "^ 8.2", optional = true }
3030
itertools = "^ 0.10"
3131
hyper = { version = "^ 0.14", features = ["client", "http2"] }
3232
http = "^0.2"

google-clis-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This library is just to try out the code that should ultimately go into the code generator !
33
[package]
44
name = "google-clis-common"
5-
version = "5.0.0"
5+
version = "6.0.0"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
repository = "https://github.com/Byron/google-apis-rs"
88
homepage = "https://github.com/Byron/google-apis-rs/google-clis-common"
@@ -17,7 +17,7 @@ doctest = false
1717

1818
[dependencies]
1919
mime = "^ 0.3"
20-
yup-oauth2 = "^ 8.0"
20+
yup-oauth2 = "^ 8.2"
2121
serde = "1"
2222
serde_json = "1"
2323
strsim = "0.10.0"

src/generator/templates/Cargo.toml.mako

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ serde = { version = "^ 1.0", features = ["derive"] }
3434
serde_json = "^ 1.0"
3535
itertools = "^ 0.10"
3636
% if cargo.get('is_executable', False):
37-
google-clis-common = { path = "../../google-clis-common", version = "5.0" }
37+
google-clis-common = { path = "../../google-clis-common", version = "6.0" }
3838
% else:
39-
google-apis-common = { path = "../../google-apis-common", version = "5.0.1" }
39+
google-apis-common = { path = "../../google-apis-common", version = "6.0" }
4040
% endif
4141
% for dep in cargo.get('dependencies', list()):
4242
${dep}

0 commit comments

Comments
 (0)