fix(deps): resolve rustls crypto provider conflict
Disable default features on google-gmail1 to avoid enabling both ring and aws-lc-rs crypto providers. Rustls 0.23.36 cannot auto-select when both are compiled in. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@@ -1702,7 +1702,6 @@ dependencies = [
|
|||||||
"aws-lc-rs",
|
"aws-lc-rs",
|
||||||
"log",
|
"log",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"ring",
|
|
||||||
"rustls-pki-types",
|
"rustls-pki-types",
|
||||||
"rustls-webpki",
|
"rustls-webpki",
|
||||||
"subtle",
|
"subtle",
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ config = { version = "0.15.19", default-features = false, features = [
|
|||||||
"toml",
|
"toml",
|
||||||
] }
|
] }
|
||||||
env_logger = "0.11.8"
|
env_logger = "0.11.8"
|
||||||
google-gmail1 = "7.0.0"
|
google-gmail1 = { version = "7.0.0", default-features = false, features = ["yup-oauth2", "aws-lc-rs"] }
|
||||||
hyper-rustls = { version = "0.27.7", features = ["http1"] }
|
hyper-rustls = { version = "0.27.7", features = ["http1"] }
|
||||||
lazy-regex = "3.5.1"
|
lazy-regex = "3.5.1"
|
||||||
log = "0.4.29"
|
log = "0.4.29"
|
||||||
|
|||||||
Reference in New Issue
Block a user