This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch allow-using-dtolnay-paste in repository https://gitbox.apache.org/repos/asf/avro-rs.git
commit f2d8770393ab3d8fdb8993c1e0f06d7ec360e0cc Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Sat Mar 8 00:04:21 2025 +0200 chore: Fix `cargo deny check` by allowing the usage of dtolnay/paste This crate is used to generate unit tests and there is no known issue using it. Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index 5b2c530..1cac9e3 100644 --- a/deny.toml +++ b/deny.toml @@ -32,6 +32,8 @@ yanked = "warn" # # e.g. "RUSTSEC-0000-0000", ignore = [ + # We need to use dtolnay/paste even though it is not maintained + "RUSTSEC-2024-0436" ] # This section is considered when running `cargo deny check licenses`
