From 647b8e2313d20841a1f05f6c46c036bf9457a2ef Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sat, 12 Oct 2024 21:17:44 -0700 Subject: [PATCH] Try fix windows build --- src-tauri/yaak_grpc/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-tauri/yaak_grpc/Cargo.toml b/src-tauri/yaak_grpc/Cargo.toml index 2e54cafc..99c5f93b 100644 --- a/src-tauri/yaak_grpc/Cargo.toml +++ b/src-tauri/yaak_grpc/Cargo.toml @@ -8,14 +8,14 @@ anyhow = "1.0.79" dunce = "1.0.4" hyper = { version = "1.4.1" } hyper-proxy2 = { version = "0.1.0" } -hyper-rustls = { version = "0.27.3", features = ["http2", "rustls-native-certs"] } +hyper-rustls = { version = "0.27.3", default-features = false, features = ["http2", "rustls-native-certs"] } hyper-util = { version = "0.1.9" } log = "0.4.20" md5 = "0.7.0" prost = "0.13.3" prost-reflect = { version = "0.14.2", features = ["serde", "derive"] } prost-types = "0.13.3" -rustls = { version = "0.23.12" , features = ["ring"]} +rustls = { version = "0.23.12", features = ["ring"] } serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.113" tauri = { workspace = true }