This commit is contained in:
2026-04-17 12:54:43 +03:00
parent 8721353b8d
commit bb371e1b71
9 changed files with 1024 additions and 154 deletions

View File

@@ -11,8 +11,6 @@ use std::collections::HashMap;
use std::io::Cursor;
use std::path::Path;
// Добавить после импортов в processor.rs
#[derive(Debug, Clone)]
pub struct SheetData {
pub name: String,
@@ -174,7 +172,6 @@ fn parse_sheet_dynamic_optimized(
})
.collect();
// Парсим строки данных
let rows_data: Vec<HashMap<String, String>> = data_matrix
.iter()
.skip(1)