From c432d5cb26b4afeb4dffb6822cc263423d01a0f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Aug 2022 12:35:52 +0000 Subject: [PATCH] Bump time from 0.3.4 to 0.3.14 Bumps [time](https://github.com/time-rs/time) from 0.3.4 to 0.3.14. - [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.14) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++----- crates/tdb-server-core/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1220f74..3f44ebbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1292,9 +1292,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.102" +version = "0.2.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2a5ac8f984bfcf3a823267e5fde638acc3325f6496633a5da6bb6eb2171e103" +checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" [[package]] name = "libnghttp2-sys" @@ -1551,6 +1551,15 @@ dependencies = [ "libc", ] +[[package]] +name = "num_threads" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +dependencies = [ + "libc", +] + [[package]] name = "number_prefix" version = "0.4.0" @@ -2385,7 +2394,7 @@ dependencies = [ "surf", "tdb_core", "tempdir", - "time 0.3.4", + "time 0.3.14", "uuid", ] @@ -2517,11 +2526,12 @@ dependencies = [ [[package]] name = "time" -version = "0.3.4" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99beeb0daeac2bd1e86ac2c21caddecb244b39a093594da1a661ec2060c7aedd" +checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" dependencies = [ "libc", + "num_threads", ] [[package]] diff --git a/crates/tdb-server-core/Cargo.toml b/crates/tdb-server-core/Cargo.toml index 1f484be6..623cd94a 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.14" } surf = { optional = true, version = "2.3.1" }