From 990295304f1a1042d329cb8fe248be5c05a6cbaa Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Fri, 15 Sep 2023 10:58:56 -0300 Subject: [PATCH] fix(core): remove unused rand dependency, ignore quickcheck_macros (#7838) --- core/tauri-runtime/Cargo.toml | 1 - core/tauri/Cargo.toml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 72f0f3cb1e8b..533c4be68721 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -30,7 +30,6 @@ tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } http = "0.2.4" raw-window-handle = "0.5" -rand = "0.8" url = { version = "2" } [target."cfg(windows)".dependencies.windows] diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 368b7ef63c53..4abdec98b35c 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -36,6 +36,7 @@ targets = [ [package.metadata.cargo-udeps.ignore] normal = [ "reqwest" ] build = [ "tauri-build" ] +development = [ "quickcheck_macros" ] [dependencies] serde_json = { version = "1.0", features = [ "raw_value" ] }