We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c9032 commit 4fa4321Copy full SHA for 4fa4321
compiler/pavex_cli/src/activation/mod.rs
@@ -198,6 +198,7 @@ pub enum CliTokenError {
198
RpcError(#[source] anyhow::Error),
199
}
200
201
+#[allow(unused_assignments)] // It's a false positive.
202
#[derive(thiserror::Error, miette::Diagnostic, Debug)]
203
#[error(
204
"The wizard key you provided is malformed. {details}",
compiler/pavexc/src/compiler/app.rs
@@ -1,5 +1,5 @@
1
use std::collections::BTreeSet;
2
-use std::io::{BufWriter, Write};
+use std::io::Write;
3
use std::path::Path;
4
5
use ahash::{HashMap, HashMapExt};
0 commit comments