diff --git a/Cargo.lock b/Cargo.lock index 045f6b4..349a127 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 5c4383a..296434a 100644 --- a/nix-script-directives/Cargo.toml +++ b/nix-script-directives/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" anyhow = "1.0.94" log = "0.4.22" rnix = "0.11.0" -rowan = "0.15.16" +rowan = "0.16.1" serde = { version = "1.0.215", features = [ "derive" ] }