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