@@ -29,7 +29,6 @@ all-features = true
29
29
[advisories ]
30
30
version = 2
31
31
ignore = [
32
- " RUSTSEC-2024-0384" , # Waiting for https://github.com/console-rs/indicatif/pull/666
33
32
" RUSTSEC-2024-0436" , # https://rustsec.org/advisories/RUSTSEC-2024-0436 - paste is unmaintained - https://github.com/dtolnay/paste
34
33
" RUSTSEC-2024-0014" , # https://rustsec.org/advisories/RUSTSEC-2024-0014 - generational-arena is unmaintained
35
34
]
@@ -54,6 +53,7 @@ deny = [
54
53
skip = [
55
54
{ name = " base64" }, # Too popular
56
55
{ name = " block2" }, # Old version via rfd
56
+ { name = " bzip2" }, # Remove after https://github.com/apache/datafusion/pull/17509 closes
57
57
{ name = " cargo-platform" }, # Older version used by ply-rs. It's build-time only!
58
58
{ name = " cargo_metadata" }, # Older version used by ply-rs. It's small, and it's build-time only!
59
59
{ name = " core-foundation" }, # Currently, e.g. `webbrowser` and `winit` use different versions.
@@ -63,7 +63,7 @@ skip = [
63
63
{ name = " objc2-foundation" }, # `accesskit_macos` uses a different version than `arboard`
64
64
{ name = " objc2" }, # `accesskit_macos` uses a different version than `arboard`
65
65
{ name = " ordered-float" }, # Old version being used by parquet, but super small!
66
- { name = " pollster " }, # rfd is still on 0.3
66
+ { name = " petgraph " }, # Remove after https://github.com/tokio-rs/prost/pull/1268 resolves
67
67
{ name = " pulldown-cmark" }, # Build-dependency via `ply-rs` (!). TODO(emilk): use a better crate for .ply parsing
68
68
{ name = " redox_syscall" }, # Plenty of versions in the wild
69
69
{ name = " rustc-hash" }, # numpy with compatible pyo3 requires different version than wgpu
@@ -95,8 +95,8 @@ allow = [
95
95
" OFL-1.1" , # https://spdx.org/licenses/OFL-1.1.html
96
96
" Ubuntu-font-1.0" , # https://ubuntu.com/legal/font-licence
97
97
" Unicode-3.0" , # https://www.unicode.org/license.txt
98
- " Unicode-DFS-2016" , # https://spdx.org/licenses/Unicode-DFS-2016.html
99
98
" Zlib" , # https://tldrlegal.com/license/zlib-libpng-license-(zlib)
99
+ " bzip2-1.0.6" , # https://github.com/trifectatechfoundation/libbzip2-rs/blob/v0.2.2/COPYING
100
100
]
101
101
exceptions = []
102
102
@@ -110,7 +110,6 @@ name = "ring"
110
110
expression = " MIT AND ISC AND OpenSSL"
111
111
license-files = [{ path = " LICENSE" , hash = 0xbd0eed23 }]
112
112
113
-
114
113
[sources ]
115
114
unknown-registry = " deny"
116
115
unknown-git = " deny"
0 commit comments