From 0ac777b8b921c5205cf658af4b14bb3acb6bc83b Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Sun, 27 Oct 2024 12:13:24 -0700 Subject: [PATCH] chore: Remove resolved advisory from deny ignore list (#487) Closes https://github.com/roadster-rs/roadster/issues/447 --- Cargo.toml | 4 ++-- deny.toml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 040cc317..8c811eba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" keywords = ["web", "framework"] categories = ["web-programming", "web-programming::http-server"] # Determined using `cargo msrv` -- https://github.com/foresterre/cargo-msrv -rust-version = "1.74.1" +rust-version = "1.77.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -35,7 +35,7 @@ config-yml = ["config/yaml"] # Config # We only support `toml` configs currently, and one of the default features (`rust-ini`) pulls in a dependency # that breaks the coverage build on nightly. -config = { version = "0.14.0", default-features = false, features = ["toml", "convert-case"] } +config = { version = "0.14.1", default-features = false, features = ["toml", "convert-case"] } dotenvy = "0.15.5" # Tracing diff --git a/deny.toml b/deny.toml index 5f4c61bf..4d1db5cd 100644 --- a/deny.toml +++ b/deny.toml @@ -71,8 +71,6 @@ feature-depth = 1 # output a note when they are encountered. ignore = [ { id = "RUSTSEC-2024-0370", reason = "Transitive dependency; need other dependencies to resolve first." }, - # Todo: https://github.com/roadster-rs/roadster/issues/447 - Get `config` to fix or migrate to `figment` - { id = "RUSTSEC-2024-0320", reason = "Transitive dependency of `config` crate; only impacts our `config-yaml` feature." }, #"RUSTSEC-0000-0000", #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish