Skip to content

Commit 631c521

Browse files
committed
Fix clippy warning: allow dead_code on AnalysisConfig (convert/both computed in into_args)
1 parent 8f94200 commit 631c521

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src-tauri/src/commands.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pub fn get_core_version() -> String {
2323
/// Analysis configuration sent from the frontend (camelCase).
2424
#[derive(Debug, Clone, Deserialize)]
2525
#[serde(rename_all = "camelCase")]
26+
#[allow(dead_code)] // `convert` and `both` are computed in into_args(), not read directly
2627
pub struct AnalysisConfig {
2728
pub vcf_file: String,
2829
pub bam_file: Option<String>,

0 commit comments

Comments
 (0)