From fa5bf16cf9e04e5d9d406108183237591252d680 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:05:23 +0000 Subject: [PATCH] Bump time from 0.3.4 to 0.3.17 Bumps [time](https://github.com/time-rs/time) from 0.3.4 to 0.3.17. - [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.3.4...v0.3.17) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++---- crates/tdb-server-core/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1220f74..7aae07a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2385,7 +2385,7 @@ dependencies = [ "surf", "tdb_core", "tempdir", - "time 0.3.4", + "time 0.3.17", "uuid", ] @@ -2517,13 +2517,20 @@ dependencies = [ [[package]] name = "time" -version = "0.3.4" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99beeb0daeac2bd1e86ac2c21caddecb244b39a093594da1a661ec2060c7aedd" +checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" dependencies = [ - "libc", + "serde 1.0.130", + "time-core", ] +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + [[package]] name = "time-macros" version = "0.1.1" diff --git a/crates/tdb-server-core/Cargo.toml b/crates/tdb-server-core/Cargo.toml index 1f484be6..8f226168 100644 --- a/crates/tdb-server-core/Cargo.toml +++ b/crates/tdb-server-core/Cargo.toml @@ -33,7 +33,7 @@ tempdir = { optional = true, version = "0.3.7" } reqwest = { features=["blocking", "json"], optional = true, version = "0.11.6" } serde = { optional = true, version = "1.0.110" } config = { optional = true, version = "0.11.0" } -time = { optional = true, version = "0.3.4" } +time = { optional = true, version = "0.3.17" } surf = { optional = true, version = "2.3.1" }