You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This removes dependency on atty, and tracing-tree (which depends on atty). This is in response to this security advisory:
https://rustsec.org/advisories/RUSTSEC-2021-0145
atty is removed by switching to std::io::IsTerminal. tracing-tree is removed by replacing HierarchicalLayer with a regular tracing_subscriber::fmt::layer that directs to stderr.
The PR also updates hermit-abi to 0.3.2 from 0.3.1, in response to 0.3.1 being yanked.
This PR resolves#2580.
The "cargo audit" workflow is currently failing due to a the following advisory: https://rustsec.org/advisories/RUSTSEC-2021-0145
We can probably just use the new standard library API: std::io::IsTerminal - Stable since Rust 1.70.0
The text was updated successfully, but these errors were encountered: