From cf01f3a493ac359093fb378b2e2e0c28afcd5c7b Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Sun, 12 Feb 2023 13:21:00 -0500 Subject: [PATCH] feat: openssl dependency removed --- src-tauri/Cargo.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 2c1aa51..94ade28 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx = { version = "0.6", default-features = false, features = [ "runtime-tokio-rustls", "sqlite", "macros", "time"] } -tauri = { version = "1.2", features = ["api-all", "system-tray"] } +tauri = { version = "1.2", features = ["api-all", "system-tray", "native-tls-vendored"] } thiserror = "1.0" time = { version="0.3", features= ["serde", "parsing", "local-offset"] } tokio = { version = "1.25", features = ["full"] } @@ -31,10 +31,6 @@ tracing = "0.1" tracing-appender = "0.2" tracing-subscriber = {version="0.3", features = ["json"] } -[target.'cfg(target_os = "linux")'.dependencies] -openssl = { version = '0.10', features = ["vendored"] } - - [features] # by default Tauri runs in production mode # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL