forked from gitui-org/gitui
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
67 lines (65 loc) · 2.03 KB
/
deny.toml
File metadata and controls
67 lines (65 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[licenses]
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
[advisories]
version = 2
ignore = [
# No fix for RSA, and this is a dependency from ssh_key crate to handle rsa ssh key.
# https://rustsec.org/advisories/RUSTSEC-2023-0071
"RUSTSEC-2023-0071",
# Crate paste is unmaintained. The dependency is already removed in
# ratatui:master. Until a new release is available, ignore this in
# order to pass CI. (https://github.com/gitui-org/gitui/issues/2554)
{ id = "RUSTSEC-2024-0436", reason = "The paste dependency is already removed from ratatui." },
# See https://github.com/trishume/syntect/issues/606
{ id = "RUSTSEC-2025-0141", reason = "Only brought in via syntect" },
]
[bans]
multiple-versions = "deny"
skip-tree = [
# currently needed due to:
# * `dirs-sys v0.4.1` (https://github.com/dirs-dev/dirs-sys-rs/issues/29)
{ name = "windows-sys" },
# this is needed for:
# `bwrap v1.3.0` (https://github.com/micl2e2/bwrap/pull/4)
{ name = "unicode-width" },
# currently needed due to `ratatui v0.29.0`
{ name = "unicode-truncate" },
# currently needed due to:
# * `redox_users v0.4.6`
# * `syntect v5.2.0`
{ name = "thiserror" },
# currently needed due to:
# * `windows v0.57.0`
# * `iana-time-zone v0.1.60`
{ name = "windows-core" },
# currently needed due to:
# * `parking_lot_core v0.9.10`
# * `filetime v0.2.23`
{ name = "redox_syscall" },
# currently needed due to:
# * `gix-hashtable v0.6.0`
{ name = "hashbrown" },
# 2022-10-26 `getrandom` and `rustix` were added when `gitoxide` was
# upgraded from 0.71.0 to 0.74.1.
# currently needed due to:
# * `tempfile v3.23.0`
# * `rand_core v0.6.4`
# * `redox_users v0.5.0`
{ name = "getrandom" },
# currently needed due to:
# * `crossterm v0.28.1`
# * `which v7.0.2`
# * `gix-index v0.42.1`
# * `tempfile v3.23.0`
{ name = "rustix" },
]