diff --git a/Cargo.toml b/Cargo.toml index 0c2542343..7ed527866 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,9 +33,9 @@ criterion = "0.4" rstest = "0.15.0" rand = "0.8.5" rand_chacha = "0.3.1" -# We need to explicitly set a version here so that cargo deny doesn't complain -# Don't forget to update this when bumping the version of taffy! -taffy = { path = ".", version = "0.2.0", features = ["random"] } + +# Enable example and test-specific features +taffy = { path = ".", features = ["random"] } [profile.release] lto = true diff --git a/deny.toml b/deny.toml index b749bf864..6502e3bf5 100644 --- a/deny.toml +++ b/deny.toml @@ -6,7 +6,7 @@ unmaintained = "deny" yanked = "deny" notice = "deny" ignore = [ - "RUSTSEC-2021-0127" # from serde_cbor + "RUSTSEC-2021-0145" # from criterion, used only for benchmarking ] [licenses] @@ -26,7 +26,9 @@ wildcards = "deny" highlight = "all" # Certain crates/versions that will be skipped when doing duplicate detection. skip = [ - { name = "itoa", version = "1.0.2" } + # Bypass problems with wildcard dependencies for dev-dependncies. + # Proper fix requires https://github.com/EmbarkStudios/cargo-deny/issues/448 + { name = "taffy" } ] [sources]