3cb0f5a93b
- 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
32 lines
763 B
TOML
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"
|