wnfs-wg / rs-wnfs

Rust implementation of the WebNative FileSystem (WNFS) specification
https://github.com/wnfs-wg
Apache License 2.0
147 stars 24 forks source link

RUSTSEC-2024-0375: `atty` is unmaintained #456

Open github-actions[bot] opened 2 months ago

github-actions[bot] commented 2 months ago

atty is unmaintained

Details
Status unmaintained
Package atty
Version 0.2.14
URL https://github.com/softprops/atty/issues/57
Date 2024-09-25

The maintainer of atty has published 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 trait.

Alternative(s)

See advisory page for additional details.

matheus23 commented 2 months ago

This is a development dependency in wnfs-bench:

$ cargo tree -i atty
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
atty v0.2.14
└── criterion v0.4.0
    [dev-dependencies]
    └── wnfs-bench v0.2.0 (/home/philipp/program/work/rs-wnfs/wnfs-bench)

The fix is to update criterion.