From 372459e072736c31e0e91b333b6c853d9147c2f7 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 15 Jun 2023 19:11:21 +0100 Subject: [PATCH] debian/update-build-deps: Scan macros/ too As it happens, these dependencies were never actually violated since other of our deps pulled them in. Signed-off-by: Ian Jackson --- debian/control | 3 +++ debian/update-build-deps | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index be235c3..7fd2226 100644 --- a/debian/control +++ b/debian/control @@ -33,9 +33,12 @@ Build-Depends: debhelper (>= 12), cargo, rustc, python3-sphinx, librust-nix-dev , librust-parking-lot-dev , librust-pin-project-lite-dev , + librust-proc-macro2-dev , + librust-quote-dev , librust-regex-dev , librust-sha2-dev , librust-subtle-dev , + librust-syn-dev , librust-syslog-dev , librust-thiserror-dev , librust-tokio-dev , diff --git a/debian/update-build-deps b/debian/update-build-deps index 3bc866f..99e73c8 100755 --- a/debian/update-build-deps +++ b/debian/update-build-deps @@ -26,7 +26,7 @@ while () { if (m{^\S} && !m{^\#}i) { local ($_); my %outputs; - foreach my $file (qw(Cargo.toml)) { + foreach my $file (qw(Cargo.toml macros/Cargo.toml)) { open C, $file or die "$file $!"; my $toml = do { local $/ = undef; // die "$file $!"; }; C->error and die "$file $!"; -- 2.30.2