Temporarily allow syn v1.0 in cargo deny
This temporarily allows `syn` v1.0 to be in the dependency tree as the whole ecosystem is currently transitioning to `syn` v2.0. This process however may take a while. The entry in the `deny.toml` should be removed once all dependencies transitioned.
This commit is contained in:
parent
71281a5d79
commit
3b6373d0f4
1 changed files with 3 additions and 0 deletions
|
|
@ -243,6 +243,9 @@ deny = [
|
|||
|
||||
# Certain crates/versions that will be skipped when doing duplicate detection.
|
||||
skip = [
|
||||
# TODO: We allow syn 1.0 during the transition to syn 2.0. Remove this when
|
||||
# syn is not in the dependency tree anymore.
|
||||
{ name = "syn", version = "1" }
|
||||
#{ name = "ansi_term", version = "=0.11.0" },
|
||||
]
|
||||
# Similarly to `skip` allows you to skip certain crates during duplicate
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue