From 079cbc6e47acf685935a294a2fc5e45db0456f2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 11:27:24 +0000 Subject: [PATCH] Bump tiny_http from 0.11.0 to 0.12.0 Bumps [tiny_http](https://github.com/tiny-http/tiny-http) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/tiny-http/tiny-http/releases) - [Changelog](https://github.com/tiny-http/tiny-http/blob/master/CHANGELOG.md) - [Commits](https://github.com/tiny-http/tiny-http/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: tiny_http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 46 +++++++++------------------------------------- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 38 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6e0bed..6f8e61e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,6 +258,12 @@ dependencies = [ "vfs", ] +[[package]] +name = "httpdate" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + [[package]] name = "idna" version = "0.2.3" @@ -278,12 +284,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "itoa" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" - [[package]] name = "js-sys" version = "0.3.58" @@ -347,15 +347,6 @@ dependencies = [ "adler", ] -[[package]] -name = "num_threads" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" -dependencies = [ - "libc", -] - [[package]] name = "once_cell" version = "1.12.0" @@ -560,35 +551,16 @@ dependencies = [ "xattr", ] -[[package]] -name = "time" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217" -dependencies = [ - "itoa", - "libc", - "num_threads", - "time-macros", -] - -[[package]] -name = "time-macros" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" - [[package]] name = "tiny_http" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0d6ef4e10d23c1efb862eecad25c5054429a71958b4eeef85eb5e7170b477ca" +checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82" dependencies = [ "ascii", "chunked_transfer", + "httpdate", "log", - "time", - "url", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a2f830b..a54eadd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies] -tiny_http = "0.11" +tiny_http = "0.12" ascii = "1.0" vfs = { version = "0.7", features = ["embedded-fs"] } rust-embed = { version = "6", features = ["debug-embed"] }