From 9298a157e34af603d0b805fa78cc42a064d05ab3 Mon Sep 17 00:00:00 2001 From: Josh Pschorr Date: Thu, 3 Oct 2024 10:02:38 -0700 Subject: [PATCH] Update some dependencies and deny checks (#500) --- deny.toml | 14 +------------- .../partiql-extension-value-functions/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/deny.toml b/deny.toml index 37526387..a9e2fa8e 100644 --- a/deny.toml +++ b/deny.toml @@ -9,15 +9,6 @@ version = 2 ignore = [ - # Advisory: https://rustsec.org/advisories/RUSTSEC-2021-0145 - # atty potential misaligned pointer; used by some pretty-printing deps (criterion, miette, lalrpop) - "RUSTSEC-2021-0145", - # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 - # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue - "RUSTSEC-2020-0071", - # Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0375 - # `atty` is unmaintained, but we still use a version of criterion that brings it in - "RUSTSEC-2024-0375" ] @@ -100,10 +91,7 @@ allow = [ deny = [ # Use `once_cell` instead # `OnceCell`s API is under consideration for inclusion in `std`: https://github.com/rust-lang/rust/issues/74465 - { name = "lazy_static", wrappers = ["Inflector", "criterion", "insta", "console", "logos-codegen"] }, - # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 - # `time` < 0.2.23 has a potential (though unlikely) potential segfault - { name = "time", version = "<0.2.23", wrappers = ["chrono"] }, + { name = "lazy_static", wrappers = ["Inflector", "insta", "console", "logos-codegen"] }, # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue { name = "chrono", version = "<0.4.20" }, diff --git a/extension/partiql-extension-value-functions/Cargo.toml b/extension/partiql-extension-value-functions/Cargo.toml index 2798a2fb..7066ddf9 100644 --- a/extension/partiql-extension-value-functions/Cargo.toml +++ b/extension/partiql-extension-value-functions/Cargo.toml @@ -25,7 +25,7 @@ partiql-value = { path = "../../partiql-value", version = "0.10.*" } partiql-catalog = { path = "../../partiql-catalog", version = "0.10.*" } partiql-logical = { path = "../../partiql-logical", version = "0.10.*" } -ordered-float = "3.*" +ordered-float = "4" unicase = "2.6" time = { version = "0.3", features = ["macros"] }