Update dependencies

This commit is contained in:
Dirkjan Ochtman
2022-11-25 07:56:08 -08:00
parent 78b79cf92c
commit c51c7e636f
2 changed files with 5 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ itertools = "0.10.0"
log = "0.4"
percent-encoding = "2"
rustls = { version = "0.20.4", optional = true }
rustls-pemfile = { version = "0.3", optional = true }
rustls-pemfile = { version = "1.0.1", optional = true }
seahash = "4"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
@@ -53,10 +53,10 @@ tower-service = "^0.3.1"
url = "2"
[dev-dependencies]
httptest = "0.14"
env_logger = "0.7"
httptest = "0.15"
env_logger = "0.10"
tempfile = "3.1"
webbrowser = "0.5"
webbrowser = "0.8"
hyper-rustls = "0.23"
[workspace]

View File

@@ -1,9 +1,8 @@
use yup_oauth2::{
authenticator::{DefaultAuthenticator, DefaultHyperClient, HyperClientBuilder},
authenticator_delegate::{DeviceAuthResponse, DeviceFlowDelegate, InstalledFlowDelegate},
error::{AuthError, AuthErrorCode},
ApplicationDefaultCredentialsAuthenticator, ApplicationDefaultCredentialsFlowOpts,
ApplicationSecret, DeviceFlowAuthenticator, Error, InstalledFlowAuthenticator,
ApplicationSecret, DeviceFlowAuthenticator, InstalledFlowAuthenticator,
InstalledFlowReturnMethod, ServiceAccountAuthenticator, ServiceAccountKey,
AccessTokenAuthenticator,
};