Files
fechamento-caixa/src-tauri/Cargo.toml
T
root 3cb0f5a93b
Build Fechamento de Caixa / build (macos-14, app) (push) Has been cancelled
Build Fechamento de Caixa / build (ubuntu-22.04, deb) (push) Has been cancelled
Build Fechamento de Caixa / build (windows-2022, msi) (push) Has been cancelled
Fix cross-compilation: stub USB module, add Tauri commands, fix type errors
- Stubbed usb_windows module (printing needs native Windows build)
- Added Tauri commands: detectar/configurar/imprimir_recibo/teste_impressora
- Fixed tipo annotation and concat type mismatch
- Removed windows-sys dependency (unstable API)

Windows .exe available via GitHub Actions CI
2026-06-20 17:37:35 +00:00

32 lines
763 B
TOML

[package]
name = "fechamento-caixa"
version = "0.1.0"
edition = "2021"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["devtools"] }
tauri-plugin-shell = "2"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
serde_yaml = "0.9"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
env_logger = "0.11"
thiserror = "2"
dirs = "5"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"