From: Ian Jackson Date: Thu, 15 Jun 2023 18:11:21 +0000 (+0100) Subject: debian/update-build-deps: Scan macros/ too X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=372459e072736c31e0e91b333b6c853d9147c2f7;p=hippotat.git 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 --- 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 $!";