diff --git a/Cargo.lock b/Cargo.lock index 7347fbcf..ea7d030b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -910,6 +910,7 @@ dependencies = [ "hyper", "hyper-util", "rustls", + "rustls-native-certs", "tokio", "tokio-rustls", "tower-service", @@ -1704,6 +1705,7 @@ dependencies = [ "pin-project-lite", "quinn", "rustls", + "rustls-native-certs", "rustls-pki-types", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index c3df022d..090ba0e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] } uuid = { version = "1", features = ["v4", "serde"] } time = { version = "0.3", features = ["formatting", "parsing"] } -reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart", "rustls-tls", "blocking", "http2", "socks"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart", "rustls-tls", "rustls-tls-native-roots", "blocking", "http2", "socks"] } base64 = "0.22" rand = "0.8" sha2 = "0.10"