diff --git a/deny.toml b/deny.toml index 58ce283d4..e526cb875 100644 --- a/deny.toml +++ b/deny.toml @@ -234,15 +234,15 @@ deny = [ # Certain crates/versions that will be skipped when doing duplicate detection. skip = [ - #{ name = "ansi_term", version = "=0.11.0" }, + { name = "hashbrown", version = "=0.13.2" }, + { name = "syn", version = "=1.0.109" }, ] # Similarly to `skip` allows you to skip certain crates during duplicate # detection. Unlike skip, it also includes the entire tree of transitive # dependencies starting at the specified crate, up to a certain depth, which is # by default infinite. skip-tree = [ - { name = "soroban-wasmi" } - ] +] # This section is considered when running `cargo deny check sources`. # More documentation about the 'sources' section can be found here: