cargo fmt

This commit is contained in:
Cooper Quintin
2025-06-24 17:19:53 -07:00
committed by Will Greenberg
parent 790c0963cd
commit b923d9d5a6
3 changed files with 16 additions and 14 deletions
+3 -3
View File
@@ -10,8 +10,8 @@ use crate::{diag::MessagesContainer, gsmtap_parser};
use super::{
connection_redirect_downgrade::ConnectionRedirect2GDowngradeAnalyzer,
imsi_requested::ImsiRequestedAnalyzer, information_element::InformationElement,
null_cipher::NullCipherAnalyzer, priority_2g_downgrade::LteSib6And7DowngradeAnalyzer,
nas_null_cipher::NasNullCipherAnalyzer,
nas_null_cipher::NasNullCipherAnalyzer, null_cipher::NullCipherAnalyzer,
priority_2g_downgrade::LteSib6And7DowngradeAnalyzer,
};
#[derive(Debug, Clone, Deserialize, Serialize)]
@@ -31,7 +31,7 @@ impl Default for AnalyzerConfig {
connection_redirect_2g_downgrade: true,
lte_sib6_and_7_downgrade: true,
null_cipher: true,
nas_null_cipher: true
nas_null_cipher: true,
}
}
}