- You may not recover your data
- You assume full responsibility for any issues that occur
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use encoding_rs::WINDOWS_1252; | |
| use encoding_rs_io::DecodeReaderBytesBuilder; | |
| use std::io::{BufReader, BufWriter, Write}; | |
| use std::time::Instant; | |
| #[derive(Debug, serde::Serialize)] | |
| struct SimplesRecord<'a> { | |
| base_cnpj: &'a str, | |
| simples: &'a str, | |
| entry_date: &'a str, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] | |
| use eframe::egui; | |
| use eframe::egui::ViewportCommand; | |
| use rdev::{Event, listen}; | |
| use std::sync::{Arc, Mutex}; | |
| use std::thread; | |
| use std::time::Instant; | |
| fn main() -> eframe::Result { |