diff --git a/Cargo.lock b/Cargo.lock index 6ea4244741..b1cc47b13e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1708,7 +1708,7 @@ dependencies = [ "toml", "topiary", "topiary-queries", - "tree-sitter-nickel 0.1.0", + "tree-sitter-nickel", "typed-arena", "unicode-segmentation", "void", @@ -2986,8 +2986,8 @@ dependencies = [ [[package]] name = "topiary" -version = "0.2.3" -source = "git+https://github.com/tweag/topiary.git?rev=8299a04bf83c4a2774cbbff7a036c022efa939b3#8299a04bf83c4a2774cbbff7a036c022efa939b3" +version = "0.3.0" +source = "git+https://github.com/tweag/topiary.git?rev=9ae9ef49c2fa968d15107b817864ff6627e0983e#9ae9ef49c2fa968d15107b817864ff6627e0983e" dependencies = [ "clap 4.4.7", "futures", @@ -3003,7 +3003,7 @@ dependencies = [ "tree-sitter-bash", "tree-sitter-facade", "tree-sitter-json", - "tree-sitter-nickel 0.0.1", + "tree-sitter-nickel", "tree-sitter-ocaml", "tree-sitter-ocamllex", "tree-sitter-query", @@ -3015,8 +3015,8 @@ dependencies = [ [[package]] name = "topiary-queries" -version = "0.2.3" -source = "git+https://github.com/tweag/topiary.git?rev=8299a04bf83c4a2774cbbff7a036c022efa939b3#8299a04bf83c4a2774cbbff7a036c022efa939b3" +version = "0.3.0" +source = "git+https://github.com/tweag/topiary.git?rev=9ae9ef49c2fa968d15107b817864ff6627e0983e#9ae9ef49c2fa968d15107b817864ff6627e0983e" [[package]] name = "tree-sitter" @@ -3058,20 +3058,10 @@ dependencies = [ "tree-sitter", ] -[[package]] -name = "tree-sitter-nickel" -version = "0.0.1" -source = "git+https://github.com/nickel-lang/tree-sitter-nickel?rev=b1a4718601ebd29a62bf3a7fd1069a99ccf48093#b1a4718601ebd29a62bf3a7fd1069a99ccf48093" -dependencies = [ - "cc", - "tree-sitter", -] - [[package]] name = "tree-sitter-nickel" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e95267764f0648c768e4da3e4c31b96bc5716446497dfa8b6296924b149f64a" +source = "git+https://github.com/nickel-lang/tree-sitter-nickel?rev=091b5dcc7d138901bcc162da9409c0bb626c0d27#091b5dcc7d138901bcc162da9409c0bb626c0d27" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 499d4abd72..edb282c999 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,8 +96,8 @@ void = "1" metrics = "0.21" metrics-util = "0.15" -topiary = { git = "https://github.com/tweag/topiary.git", rev = "8299a04bf83c4a2774cbbff7a036c022efa939b3" } -topiary-queries = { git = "https://github.com/tweag/topiary.git", rev = "8299a04bf83c4a2774cbbff7a036c022efa939b3", package = "topiary-queries", default-features = false, features = ["nickel"] } +topiary = { git = "https://github.com/tweag/topiary.git", rev = "9ae9ef49c2fa968d15107b817864ff6627e0983e" } +topiary-queries = { git = "https://github.com/tweag/topiary.git", rev = "9ae9ef49c2fa968d15107b817864ff6627e0983e", package = "topiary-queries", default-features = false, features = ["nickel"] } # This should be kept in sync with the revision in topiary -tree-sitter-nickel = { version = "0.1.0" } +tree-sitter-nickel = { git = "https://github.com/nickel-lang/tree-sitter-nickel", rev = "091b5dcc7d138901bcc162da9409c0bb626c0d27" } tempfile = "3.5.0"