From 1527a6869ca7dbf5fd926c44842ab6d66774eb73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Oct 2022 05:23:10 +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 | 60 +++++++++++++++--------------------------------------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 45 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d2d81d3..85fc3c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,7 +318,7 @@ checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" dependencies = [ "cssparser-macros", "dtoa-short", - "itoa 0.4.6", + "itoa", "matches", "phf 0.8.0", "proc-macro2 1.0.24", @@ -774,7 +774,7 @@ checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9" dependencies = [ "bytes 0.5.6", "fnv", - "itoa 0.4.6", + "itoa", ] [[package]] @@ -799,6 +799,12 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" +[[package]] +name = "httpdate" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + [[package]] name = "humansize" version = "1.1.1" @@ -819,8 +825,8 @@ dependencies = [ "http", "http-body", "httparse", - "httpdate", - "itoa 0.4.6", + "httpdate 0.3.2", + "itoa", "pin-project 1.0.3", "socket2", "tokio 1.0.1", @@ -952,12 +958,6 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6" -[[package]] -name = "itoa" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" - [[package]] name = "jobserver" version = "0.1.21" @@ -1330,15 +1330,6 @@ dependencies = [ "libc", ] -[[package]] -name = "num_threads" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" -dependencies = [ - "libc", -] - [[package]] name = "object" version = "0.20.0" @@ -2024,7 +2015,7 @@ version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c" dependencies = [ - "itoa 0.4.6", + "itoa", "ryu", "serde", ] @@ -2047,7 +2038,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" dependencies = [ "form_urlencoded", - "itoa 0.4.6", + "itoa", "ryu", "serde", ] @@ -2342,23 +2333,11 @@ dependencies = [ "libc", "standback", "stdweb", - "time-macros 0.1.0", + "time-macros", "version_check", "winapi 0.3.9", ] -[[package]] -name = "time" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" -dependencies = [ - "itoa 1.0.1", - "libc", - "num_threads", - "time-macros 0.2.3", -] - [[package]] name = "time-macros" version = "0.1.0" @@ -2369,12 +2348,6 @@ dependencies = [ "time-macros-impl", ] -[[package]] -name = "time-macros" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6" - [[package]] name = "time-macros-impl" version = "0.1.1" @@ -2390,15 +2363,14 @@ dependencies = [ [[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 1.0.2", "log", - "time 0.3.7", - "url", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 25a1ed9..4594b89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ built = { version = "0.5.1", features = ["git2"] } man = "0.3.0" [dev-dependencies] -tiny_http = "0.11.0" +tiny_http = "0.12.0" diff = "0.1.13" tempfile = "3.3.0"