From 2b18d0f916d118dcb51e244b782586a8743f24db Mon Sep 17 00:00:00 2001 From: overlookmotel Date: Thu, 22 Feb 2024 03:12:49 +0000 Subject: [PATCH] Depend on specific commit of `layout_inspect` --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51cce749666c22..f9b73f14a883be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -917,7 +917,7 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "layout_inspect" version = "0.1.0" -source = "git+https://github.com/overlookmotel/layout_inspect#a3e1973fd68449fe372ffcd8e4139435f1c83ea7" +source = "git+https://github.com/overlookmotel/layout_inspect?rev=c126662#c1266627ad0ab5f098fd991fc3b164562b359f51" dependencies = [ "layout_inspect_derive", "macro_rules_attribute", @@ -929,11 +929,11 @@ dependencies = [ [[package]] name = "layout_inspect_derive" version = "0.1.0" -source = "git+https://github.com/overlookmotel/layout_inspect#a3e1973fd68449fe372ffcd8e4139435f1c83ea7" +source = "git+https://github.com/overlookmotel/layout_inspect?rev=c126662#c1266627ad0ab5f098fd991fc3b164562b359f51" dependencies = [ + "convert_case", "proc-macro2", "quote", - "regex", "syn 1.0.109", ] diff --git a/Cargo.toml b/Cargo.toml index 36b710aed52387..fe95478a739f91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ futures = { version = "0.3.30" } ignore = { version = "0.4.22" } itertools = { version = "0.12.1" } jemallocator = { version = "0.5.4" } -layout_inspect = { git = "https://github.com/overlookmotel/layout_inspect" } +layout_inspect = { git = "https://github.com/overlookmotel/layout_inspect", rev = "c126662" } lazy_static = { version = "1.4.0" } miette = { version = "5.10.0", features = ["fancy-no-backtrace"] } mimalloc = { version = "0.1.39" }