From 8cb1a704a2653c295b798dc53355184d9ded4003 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 21:59:05 +0000 Subject: [PATCH] build(deps): bump rowan from 0.15.15 to 0.16.0 Bumps [rowan](https://github.com/rust-analyzer/rowan) from 0.15.15 to 0.16.0. - [Commits](https://github.com/rust-analyzer/rowan/compare/v0.15.15...v0.16.0) --- updated-dependencies: - dependency-name: rowan dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 ++++++++++++++++-------------------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 701f1e2..8cd2936 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,12 +50,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - [[package]] name = "clap" version = "4.5.2" @@ -174,15 +168,6 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" -[[package]] -name = "memoffset" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" -dependencies = [ - "autocfg", -] - [[package]] name = "nixdoc" version = "3.0.4" @@ -190,7 +175,7 @@ dependencies = [ "clap", "insta", "rnix", - "rowan", + "rowan 0.16.0", "serde", "serde_json", "textwrap", @@ -220,18 +205,29 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb35cedbeb70e0ccabef2a31bcff0aebd114f19566086300b8f42c725fc2cb5f" dependencies = [ - "rowan", + "rowan 0.15.16", +] + +[[package]] +name = "rowan" +version = "0.15.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d" +dependencies = [ + "countme", + "hashbrown", + "rustc-hash", + "text-size", ] [[package]] name = "rowan" -version = "0.15.15" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49" +checksum = "028acc0aeb6c46a4e4390928ef6ec0f4b7e9432f37bd4129a976e77f86f93322" dependencies = [ "countme", "hashbrown", - "memoffset", "rustc-hash", "text-size", ] diff --git a/Cargo.toml b/Cargo.toml index 7ff91b7..0b80444 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ description = "Generate CommonMark from Nix library functions" [dependencies] rnix = "0.11" -rowan = "0.15.11" +rowan = "0.16.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" textwrap = "0.16"