Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove usage of deprecated 'description' in errors #106

Merged
merged 1 commit into from
Sep 28, 2023

Conversation

who-biz
Copy link
Contributor

@who-biz who-biz commented Sep 27, 2023

This PR removes all usage of std::error::Error::description().

It has been deprecated since Rust 1.42. Instead, we need to implement Display for all relevant errors OR use to_string()

None of these were very helpful, to begin with. It is impossible to move variable data up to higher levels in code with description() anyway, as it requires a string literal in return.

There is now better tooling in functions such as source(), which does allow us to pass errors from lower levels to higher ones.

Mostly removal of old/unused code. Brings us into compatibility with future versions of rust, as far as std::error::Error trait is concerned.

Silences the following warnings:

warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
   --> keychain/src/extkey_bip32.rs:338:41
    |
338 |             Error::Ecdsa(ref e) => error::Error::description(e),
    |                                                  ^^^^^^^^^^^
    |
    = note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
  --> core/src/core/foundation.rs:52:68
   |
52 |         Err(why) => panic!("Couldn't create {}: {}", path.display(), why.description()),
   |                                                                          ^^^^^^^^^^^
   |
   = note: `#[warn(deprecated)]` on by default

- It is now required to use the Display trait, or to_string()
- All of our error types seem to implement the display trait, and provide greater information there
- As such, none of these were being used (and were never very helpful to begin with)
@who-biz who-biz merged commit eb680c3 into EpicCash:master Sep 28, 2023
@who-biz who-biz deleted the error-deprecations branch September 28, 2023 19:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants