- Replaced the `renderizar` function in `layouts.rs` with a new `view` function using Iced for a more modern UI approach. - Introduced a new `view_secao_layouts` function to handle the display of saved layouts. - Updated the `resultado.rs` file to use Iced for rendering the results screen, including buttons for actions and pagination controls. - Created a new `selecionar_aba.rs` file for the selection of XLSX sheet tabs, implementing a preview feature. - Removed old rendering functions and replaced them with Iced components for better performance and maintainability. - Added design tokens in `design_tokens.json` for consistent styling across the application. - Created a mockup HTML file to visualize the UI design.
26 lines
607 B
TOML
26 lines
607 B
TOML
[package]
|
|
name = "comparador-notas"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
iced = { version = "0.13", features = ["tokio", "image"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
csv = "1.3"
|
|
calamine = "0.26"
|
|
rust_decimal = { version = "1.36", features = ["serde"] }
|
|
rust_decimal_macros = "1.36"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
genpdf = "0.2"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
encoding_rs = "0.8"
|
|
dirs = "5"
|
|
thiserror = "2"
|
|
regex = "1"
|
|
rfd = "0.15"
|
|
|
|
[build-dependencies]
|
|
winres = "0.1"
|