From cd96043eab9b318a38f26af4c112c4e8d596314a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 21:54:23 +0000 Subject: [PATCH] Bump time from 0.1.44 to 0.2.0 Bumps [time](https://github.com/time-rs/time) from 0.1.44 to 0.2.0. - [Release notes](https://github.com/time-rs/time/releases) - [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) - [Commits](https://github.com/time-rs/time/compare/v0.1.44...v0.2.0) --- updated-dependencies: - dependency-name: time dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8383031..7338e7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,7 +210,7 @@ dependencies = [ "num-integer", "num-traits", "serde", - "time", + "time 0.1.45", "winapi", ] @@ -233,7 +233,7 @@ dependencies = [ "percent-encoding 2.1.0", "rand", "sha2", - "time", + "time 0.1.45", ] [[package]] @@ -412,7 +412,7 @@ dependencies = [ "log 0.3.9", "mime", "num_cpus", - "time", + "time 0.1.45", "traitobject", "typeable", "unicase", @@ -483,7 +483,7 @@ dependencies = [ "rusty_ulid", "serde", "tempfile", - "time", + "time 0.2.0", ] [[package]] @@ -772,7 +772,7 @@ dependencies = [ "rocket_codegen", "rocket_http", "state", - "time", + "time 0.1.45", "toml", "version_check 0.9.2", "yansi", @@ -806,7 +806,7 @@ dependencies = [ "percent-encoding 1.0.1", "smallvec", "state", - "time", + "time 0.1.45", "unicode-xid 0.1.0", ] @@ -938,15 +938,21 @@ dependencies = [ [[package]] name = "time" -version = "0.1.44" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", "winapi", ] +[[package]] +name = "time" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc26de0a81a07c8352b548977862908fa9863e0e6e4f0eb36b2a9f4f8845585" + [[package]] name = "tinyvec" version = "0.3.4" diff --git a/Cargo.toml b/Cargo.toml index 5d4befe..c3de250 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ rocket = "0.4.7" rust-argon2 = { version = "0.8.0", default-features = false } rusty_ulid = { version = "0.9.2", default-features = false, features = ["serde", "ulid-generation"] } serde = { version = "1.0", features = ["derive"] } -time = "0.1" # Needs to match cookie (in rocket) +time = "0.2" # Needs to match cookie (in rocket) # Needs to match rocket [dependencies.hyper]