Skip to content

Commit

Permalink
Ignore RUSTSEC-2024-0375
Browse files Browse the repository at this point in the history
```
error[unmaintained]: `atty` is unmaintained
   ┌─ /home/runner/work/urdf-viz/urdf-viz/Cargo.lock:16:1
   │
16 │ atty 0.2.14 registry+https://github.com/rust-lang/crates.io-index
   │ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ unmaintained advisory detected
   │
   ├ ID: RUSTSEC-2024-0375
   ├ Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0375
   ├ The maintainer of `atty` has [published](softprops/atty@5bfdbe9) an official notice that the crate is no longer
     under development, and that users should instead rely on the functionality in the standard library's [`IsTerminal`](https://doc.rust-lang.org/std/io/trait.IsTerminal.html) trait.
     
     ## Alternative(s)
     
     - [std::io::IsTerminal](https://doc.rust-lang.org/stable/std/io/trait.IsTerminal.html) - Stable since Rust 1.70.0 and the recommended replacement per the `atty` maintainer.
     - [is-terminal](https://crates.io/crates/is-terminal) - Standalone crate supporting Rust older than 1.70.0
   ├ Announcement: softprops/atty#57
   ├ Solution: No safe upgrade is available!
   ├ atty v0.2.14
     └── clap v2.34.0
         └── structopt v0.3.26
             └── urdf-viz v0.46.0
                 └── urdf-viz-wasm v0.0.0
```
  • Loading branch information
taiki-e authored Sep 30, 2024
1 parent 241bbe6 commit 0d1576b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ignore = [
"RUSTSEC-2021-0140", # unmaintained (rusttype), dep of kiss3d
"RUSTSEC-2021-0150", # unmaintained (ncollide3d), dep of kiss3d
"RUSTSEC-2024-0370", # unmaintained (proc-macro-error), transitively dep of structopt
"RUSTSEC-2024-0375", # unmaintained (atty), transitively dep of structopt (via old clap)
]

# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
Expand Down

0 comments on commit 0d1576b

Please sign in to comment.