We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$ cargo build --features sqlite --release ... error: the item `jsonwebtoken` is imported redundantly --> src/auth.rs:7:20 | 7 | use jsonwebtoken::{self, errors::ErrorKind, Algorithm, DecodingKey, EncodingKey, Header}; | ^^^^ the item `jsonwebtoken` is already defined by prelude | = note: `-D unused-imports` implied by `-D unused` = help: to override `-D unused` add `#[allow(unused_imports)]` error: the item `serde_json` is imported redundantly --> src/util.rs:561:18 | 561 | use serde_json::{self, Value}; | ^^^^ | ::: src/main.rs:20:1 | 20 | extern crate serde_json; | ------------------------ the item `serde_json` is already imported here error: could not compile `vaultwarden` (bin "vaultwarden") due to 2 previous errors
The text was updated successfully, but these errors were encountered:
This is already addressed in #4475.
Sorry, something went wrong.
Also as a side note, this does not happen with stable Rust which is what we support as our maximum Rust version.
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: