Skip to content

Commit 9298a15

Browse files
authored
Update some dependencies and deny checks (#500)
1 parent 104a7d1 commit 9298a15

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

deny.toml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@
99
version = 2
1010

1111
ignore = [
12-
# Advisory: https://rustsec.org/advisories/RUSTSEC-2021-0145
13-
# atty potential misaligned pointer; used by some pretty-printing deps (criterion, miette, lalrpop)
14-
"RUSTSEC-2021-0145",
15-
# Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071
16-
# `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue
17-
"RUSTSEC-2020-0071",
18-
# Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0375
19-
# `atty` is unmaintained, but we still use a version of criterion that brings it in
20-
"RUSTSEC-2024-0375"
2112
]
2213

2314

@@ -100,10 +91,7 @@ allow = [
10091
deny = [
10192
# Use `once_cell` instead
10293
# `OnceCell`s API is under consideration for inclusion in `std`: https://github.com/rust-lang/rust/issues/74465
103-
{ name = "lazy_static", wrappers = ["Inflector", "criterion", "insta", "console", "logos-codegen"] },
104-
# Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071
105-
# `time` < 0.2.23 has a potential (though unlikely) potential segfault
106-
{ name = "time", version = "<0.2.23", wrappers = ["chrono"] },
94+
{ name = "lazy_static", wrappers = ["Inflector", "insta", "console", "logos-codegen"] },
10795
# Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071
10896
# `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue
10997
{ name = "chrono", version = "<0.4.20" },

extension/partiql-extension-value-functions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ partiql-value = { path = "../../partiql-value", version = "0.10.*" }
2525
partiql-catalog = { path = "../../partiql-catalog", version = "0.10.*" }
2626
partiql-logical = { path = "../../partiql-logical", version = "0.10.*" }
2727

28-
ordered-float = "3.*"
28+
ordered-float = "4"
2929
unicase = "2.6"
3030
time = { version = "0.3", features = ["macros"] }
3131

0 commit comments

Comments
 (0)