diff --git a/CHANGELOG.md b/CHANGELOG.md index 12b4e29d..b5774a4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Fixed +- Fix `deny.template.toml` to use `db-urls` instead of `db-url`. + ## [0.8.2] - 2020-10-22 ### Fixed - [PR#303](https://github.com/EmbarkStudios/cargo-deny/pull/303) fixed [#302](https://github.com/EmbarkStudios/cargo-deny/issues/302) by reverting an unintended behavior change in how the default path for advisory databases was resolved. diff --git a/deny.template.toml b/deny.template.toml index ba243dfc..65411ca3 100644 --- a/deny.template.toml +++ b/deny.template.toml @@ -33,8 +33,8 @@ targets = [ [advisories] # The path where the advisory database is cloned/fetched into db-path = "~/.cargo/advisory-db" -# The url of the advisory database to use -db-url = "https://github.com/rustsec/advisory-db" +# The url(s) of the advisory databases to use +db-urls = ["https://github.com/rustsec/advisory-db"] # The lint level for security vulnerabilities vulnerability = "deny" # The lint level for unmaintained crates