From 1cf064cc25c6ef9de0e8a8eed43937b9bbe83a47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 03:22:09 +0000 Subject: [PATCH] Bump the minor-changes group across 1 directory with 3 updates Bumps the minor-changes group with 3 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow), [handlebars](https://github.com/sunng87/handlebars-rust) and [serde_json](https://github.com/serde-rs/json). Updates `anyhow` from 1.0.89 to 1.0.91 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.89...1.0.91) Updates `handlebars` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/sunng87/handlebars-rust/releases) - [Changelog](https://github.com/sunng87/handlebars-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/sunng87/handlebars-rust/compare/v6.1.0...v6.2.0) Updates `serde_json` from 1.0.128 to 1.0.132 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.128...1.0.132) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-changes - dependency-name: handlebars dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-changes - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-changes ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 ++++++++++++++++++++++------ Cargo.toml | 4 ++-- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e10e47..8a1e8cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,9 +61,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.89" +version = "1.0.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" +checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" [[package]] name = "assert_matches" @@ -264,11 +264,12 @@ dependencies = [ [[package]] name = "handlebars" -version = "6.1.0" +version = "6.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce25b617d1375ef96eeb920ae717e3da34a02fc979fe632c75128350f9e1f74a" +checksum = "fd4ccde012831f9a071a637b0d4e31df31c0f6c525784b35ae76a9ac6bc1e315" dependencies = [ "log", + "num-order", "pest", "pest_derive", "serde", @@ -416,6 +417,21 @@ dependencies = [ "winapi", ] +[[package]] +name = "num-modular" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f" + +[[package]] +name = "num-order" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" +dependencies = [ + "num-modular", +] + [[package]] name = "once_cell" version = "1.19.0" @@ -677,9 +693,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 85b78b8..118a878 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/slowli/term-transcript" [workspace.dependencies] -anyhow = "1.0.89" +anyhow = "1.0.91" assert_matches = "1.5.0" bytecount = "0.6.8" clap = "4.5.20" doc-comment = "0.3.3" -handlebars = "6.1.0" +handlebars = "6.2.0" humantime = "2.1.0" os_pipe = "1.2.1" portable-pty = "0.8.0"