From cb21a59f48b362676fa549ee2304d9e7d551d089 Mon Sep 17 00:00:00 2001 From: David Bernard Date: Tue, 10 Dec 2024 15:20:14 +0100 Subject: [PATCH] build: update the configuration of cargo-deny --- deny.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/deny.toml b/deny.toml index 543bb72..9771fa0 100644 --- a/deny.toml +++ b/deny.toml @@ -98,7 +98,7 @@ allow = [ "MIT", "OpenSSL", "Unicode-3.0", - "Unicode-DFS-2016", + # "Unicode-DFS-2016", "Unlicense", ] # The confidence threshold for detecting a license from license text. @@ -208,14 +208,16 @@ deny = [ skip = [ #"ansi_term@0.11.0", #{ crate = "ansi_term@0.11.0", reason = "you can specify a reason why it can't be updated/removed" }, - "tower@0.4", # axum 0.7 use tower 0.5, but hyper still use 0.4 - "sync_wrapper", # axum direct and transive dependency use multiple version + "tower@0.4", # axum 0.7 use tower 0.5, but hyper still use 0.4 + "sync_wrapper", # axum direct and transive dependency use multiple version "regex-syntax", "regex-automata", "indexmap", - "hermit-abi", - "rustls-native-certs", + # "hermit-abi", + # "rustls-native-certs", "hashbrown", + "thiserror", # until every dependency use thiserror 2 + "thiserror-impl", ] # Similarly to `skip` allows you to skip certain crates during duplicate # detection. Unlike skip, it also includes the entire tree of transitive