-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Replacing atty unmaintained dependency (#194)
**Atty is replaced by std::io::IsTerminal** Because atty has been unmaintained for 4 years, it is necessary to update it in this case to std::io::IsTerminal, which is part of the _Rust Standard Library_. [Ref](https://doc.rust-lang.org/std/io/trait.IsTerminal.html) _Changes:_ - File: cargo-near\src\commands\build_command\docker.rs Description: Atty is replaced by std::io::IsTerminal - File: cargo-near\src\common.rs Description: Atty is replaced by std::io::IsTerminal - File: cargo-near\cargo-near\src\main.rs Description: Atty is replaced by std::io::IsTerminal - File: cargo-near\Cargo.toml Description: Atty is removed and env_logger is updated to 0.11.5 because the previous version used atty. - File: cargo-near\integration-tests\Cargo.toml Description: env_logger is updated to 0.11.5 because the previous version used atty. Reference issue: [Potentially replace unmaintained libraries ignored](near/near-sdk-rs#1203)
- Loading branch information
Showing
6 changed files
with
17 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters