From e3458caa663a82861ba35078e85a244fabea9278 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 07:46:04 +0000 Subject: [PATCH] Bump rowan from 0.15.16 to 0.16.1 Bumps [rowan](https://github.com/rust-analyzer/rowan) from 0.15.16 to 0.16.1. - [Commits](https://github.com/rust-analyzer/rowan/compare/v0.15.16...v0.16.1) --- updated-dependencies: - dependency-name: rowan dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- nix-script-directives/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2b20a18..c336726 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,7 +349,7 @@ dependencies = [ "anyhow", "log", "rnix", - "rowan", + "rowan 0.16.1", "serde", ] @@ -486,7 +486,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb35cedbeb70e0ccabef2a31bcff0aebd114f19566086300b8f42c725fc2cb5f" dependencies = [ - "rowan", + "rowan 0.15.16", ] [[package]] @@ -501,6 +501,18 @@ dependencies = [ "text-size", ] +[[package]] +name = "rowan" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21" +dependencies = [ + "countme", + "hashbrown", + "rustc-hash", + "text-size", +] + [[package]] name = "rustc-hash" version = "1.1.0" diff --git a/nix-script-directives/Cargo.toml b/nix-script-directives/Cargo.toml index 9bccd43..ea43bd9 100644 --- a/nix-script-directives/Cargo.toml +++ b/nix-script-directives/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" anyhow = "1.0.95" log = "0.4.22" rnix = "0.11.0" -rowan = "0.15.16" +rowan = "0.16.1" serde = { version = "1.0.216", features = [ "derive" ] }