From 9850da3143ea8c59d7836b23eaec91d20a2fde82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 18:25:13 -0700 Subject: [PATCH] Bump time from 0.3.29 to 0.3.30 (#576) Bumps [time](https://github.com/time-rs/time) from 0.3.29 to 0.3.30. - [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.29...v0.3.30) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++++++-- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- client/Cargo.toml | 2 +- migration/Cargo.toml | 2 +- test-support/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 653ec24b..2393b898 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,6 +1055,7 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" dependencies = [ + "powerfmt", "serde", ] @@ -2522,6 +2523,12 @@ dependencies = [ "rand", ] +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + [[package]] name = "ppv-lite86" version = "0.2.17" @@ -3876,14 +3883,15 @@ dependencies = [ [[package]] name = "time" -version = "0.3.29" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" +checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" dependencies = [ "deranged", "itoa", "libc", "num_threads", + "powerfmt", "serde", "time-core", "time-macros", diff --git a/Cargo.toml b/Cargo.toml index 2b581c3c..dca29eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ serde_path_to_error = "0.1.14" sha2 = "0.10.8" subtle = "2.5.0" thiserror = "1.0.49" -time = { version = "0.3.29", features = ["serde", "serde-well-known"] } +time = { version = "0.3.30", features = ["serde", "serde-well-known"] } tokio = { version = "1.33.0", features = ["full"] } tracing = "0.1.39" trillium = "0.2.9" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 07d0323c..fca6e48f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -26,7 +26,7 @@ serde = "1.0.189" email_address = "0.2.4" humantime = "2.1.0" base64 = "0.21.4" -time = { version = "0.3.29", features = [ +time = { version = "0.3.30", features = [ "serde", "serde-well-known", "local-offset", diff --git a/client/Cargo.toml b/client/Cargo.toml index f11452f6..dcad9893 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -21,7 +21,7 @@ trillium-client = { version = "0.4.5", features = ["json"] } trillium-http = "0.3.3" url = { version = "2.4.1", features = ["serde"] } uuid = { version = "1.4.1", features = ["v4", "fast-rng", "serde"] } -time = { version = "0.3.29", features = ["serde", "serde-well-known"] } +time = { version = "0.3.30", features = ["serde", "serde-well-known"] } log = "0.4.20" pad-adapter = "0.1.1" janus_messages = "0.5.24" diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 038ac41d..fe831f7c 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -15,7 +15,7 @@ clap = { version = "4.4.6", features = ["env", "derive"] } sea-orm = "0.12.3" serde_json = "1.0.107" thiserror = "1.0.49" -time = "0.3.29" +time = "0.3.30" tracing = "0.1.39" tracing-subscriber = "0.3.17" diff --git a/test-support/Cargo.toml b/test-support/Cargo.toml index c3de3af8..05da3888 100644 --- a/test-support/Cargo.toml +++ b/test-support/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] fastrand = "2.0.1" -time = "0.3.29" +time = "0.3.30" trillium = "0.2.9" trillium-macros = "0.0.4" trillium-testing = { version = "0.5.0", features = ["tokio"] }