From 6698774f3f2bb2c3999825386827d556f262a548 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:41:37 +0200 Subject: [PATCH] fix(deps): update rust crate tiny_http to 0.12 (#1213) * fix(deps): update rust crate tiny_http to 0.12 * . --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars --- Cargo.lock | 19 +++---------------- examples/api/src-tauri/Cargo.toml | 2 +- plugins/updater/tests/app-updater/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8507074..80412450 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,7 +252,7 @@ dependencies = [ "tauri-plugin-process", "tauri-plugin-shell", "tauri-plugin-updater", - "tiny_http 0.11.0", + "tiny_http", "window-shadows", ] @@ -266,7 +266,7 @@ dependencies = [ "tauri-build", "tauri-plugin-updater", "time", - "tiny_http 0.11.0", + "tiny_http", ] [[package]] @@ -6299,7 +6299,7 @@ dependencies = [ "serde_json", "tauri", "thiserror", - "tiny_http 0.12.0", + "tiny_http", ] [[package]] @@ -6781,19 +6781,6 @@ dependencies = [ "time-core", ] -[[package]] -name = "tiny_http" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0d6ef4e10d23c1efb862eecad25c5054429a71958b4eeef85eb5e7170b477ca" -dependencies = [ - "ascii", - "chunked_transfer", - "log", - "time", - "url", -] - [[package]] name = "tiny_http" version = "0.12.0" diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index c06ea11f..9881602f 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -17,7 +17,7 @@ tauri-build = { workspace = true, features = [ "codegen", "isolation" ] } [dependencies] serde_json = { workspace = true } serde = { workspace = true } -tiny_http = "0.11" +tiny_http = "0.12" log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.3" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.4", features = [ "watch" ] } diff --git a/plugins/updater/tests/app-updater/Cargo.toml b/plugins/updater/tests/app-updater/Cargo.toml index 195f3ab0..b0364407 100644 --- a/plugins/updater/tests/app-updater/Cargo.toml +++ b/plugins/updater/tests/app-updater/Cargo.toml @@ -11,7 +11,7 @@ tauri = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tauri-plugin-updater = { path = "../.." } -tiny_http = "0.11" +tiny_http = "0.12" time = { version = "0.3", features = ["formatting"] } [features]