When compiling the project, I get:
warning: the following packages contain code that will be rejected by a future version of Rust: rustc-serialize v0.3.24
This warning means that the rustc-serialize crate, which is used by rust-crypto, is deprecated and will not work with future versions of Rust.
To solve this warning, you should consider switching to a different crate for cryptography, such as ring, openssl, or crypto2. These crates are more up-to-date and use the serde crate for serialization, which is the preferred alternative to rustc-serialize.
When compiling the project, I get:
This warning means that the rustc-serialize crate, which is used by
rust-crypto, is deprecated and will not work with future versions of Rust.To solve this warning, you should consider switching to a different crate for cryptography, such as ring, openssl, or crypto2. These crates are more up-to-date and use the serde crate for serialization, which is the preferred alternative to rustc-serialize.