diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
commit | 9918693037dce8aa4bb6f08741b6812923486c18 (patch) | |
tree | 21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /src/tools/cargo/benches/capture | |
parent | Releasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff) | |
download | rustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip |
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/cargo/benches/capture')
-rw-r--r-- | src/tools/cargo/benches/capture/Cargo.toml | 3 | ||||
-rw-r--r-- | src/tools/cargo/benches/capture/src/main.rs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/cargo/benches/capture/Cargo.toml b/src/tools/cargo/benches/capture/Cargo.toml index e300815d5..16f2c5071 100644 --- a/src/tools/cargo/benches/capture/Cargo.toml +++ b/src/tools/cargo/benches/capture/Cargo.toml @@ -12,3 +12,6 @@ cargo_metadata.workspace = true flate2.workspace = true tar.workspace = true toml.workspace = true + +[lints] +workspace = true diff --git a/src/tools/cargo/benches/capture/src/main.rs b/src/tools/cargo/benches/capture/src/main.rs index f6f02c4ba..dcded3b1a 100644 --- a/src/tools/cargo/benches/capture/src/main.rs +++ b/src/tools/cargo/benches/capture/src/main.rs @@ -4,6 +4,9 @@ //! Use the `-f` flag to allow it to overwrite existing captures. //! The workspace will be saved in a `.tgz` file in the `../workspaces` directory. +#![allow(clippy::disallowed_methods)] +#![allow(clippy::print_stderr)] + use flate2::{Compression, GzBuilder}; use std::fs; use std::path::{Path, PathBuf}; |