From e218e5379df78e75a030106b0907a34097b01c94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Aug 2023 16:10:56 +0000 Subject: [PATCH] chore(deps): bump time from 0.3.17 to 0.3.26 Bumps [time](https://github.com/time-rs/time) from 0.3.17 to 0.3.26. - [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.17...v0.3.26) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++------ crates/relayer-types/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f9614e2d..dc8a91647 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1844,6 +1844,12 @@ dependencies = [ "zeroize", ] +[[package]] +name = "deranged" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" + [[package]] name = "derivation-path" version = "0.2.0" @@ -7117,10 +7123,11 @@ dependencies = [ [[package]] name = "time" -version = "0.3.17" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" +checksum = "a79d09ac6b08c1ab3906a2f7cc2e81a0e27c7ae89c63812df75e52bef0751e07" dependencies = [ + "deranged", "libc", "num_threads", "serde", @@ -7130,15 +7137,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "time-macros" -version = "0.2.6" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" +checksum = "75c65469ed6b3a4809d987a41eb1dc918e9bc1d92211cbad7ae82931846f7451" dependencies = [ "time-core", ] diff --git a/crates/relayer-types/Cargo.toml b/crates/relayer-types/Cargo.toml index 4ec2c8b5b..b6fbace6c 100644 --- a/crates/relayer-types/Cargo.toml +++ b/crates/relayer-types/Cargo.toml @@ -29,7 +29,7 @@ mocks = ["tendermint-testgen", "clock", "std"] # Proto definitions for all IBC-related interfaces, e.g., connections or channels. ibc-proto = { version = "0.28.0", default-features = false } ics23 = { version = "=0.9.0", default-features = false, features = ["host-functions"] } -time = { version = ">=0.3.0, <0.3.21", default-features = false } +time = { version = ">=0.3.0, <0.3.27", default-features = false } serde_derive = { version = "1.0.104", default-features = false } serde = { version = "1.0", default-features = false } serde_json = { version = "1", default-features = false }