From a949149ed5aa4ff33bf7dbaf0dc6ad2e93c5f74c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 12:38:07 +0000 Subject: [PATCH] Bump time from 0.3.4 to 0.3.15 Bumps [time](https://github.com/time-rs/time) from 0.3.4 to 0.3.15. - [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.15) --- 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..3b072efe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1292,9 +1292,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.102" +version = "0.2.134" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2a5ac8f984bfcf3a823267e5fde638acc3325f6496633a5da6bb6eb2171e103" +checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" [[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.15", "uuid", ] @@ -2517,11 +2526,12 @@ dependencies = [ [[package]] name = "time" -version = "0.3.4" +version = "0.3.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99beeb0daeac2bd1e86ac2c21caddecb244b39a093594da1a661ec2060c7aedd" +checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c" dependencies = [ "libc", + "num_threads", ] [[package]] diff --git a/crates/tdb-server-core/Cargo.toml b/crates/tdb-server-core/Cargo.toml index 1f484be6..8b0bb5e2 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.15" } surf = { optional = true, version = "2.3.1" }