Files
FreightCalculatorPro/tauri/src-tauri/Cargo.toml
T
Devon Bontrager fc93c2ee57 Bump version to 1.3.0 and exclude tauri/ from Electron build
The Electron build was accidentally bundling the entire tauri/src-tauri/target
Rust build directory into app.asar (1.2GB!), inflating the installer to 304MB.
Added a files exclusion so Electron and Tauri builds stay independent.
2026-06-08 11:46:58 -04:00

26 lines
696 B
TOML

[package]
name = "freight-calculator-pro"
version = "1.3.0"
description = "Professional Freight Class Calculator"
authors = ["Devon Bontrager"]
license = "ISC"
repository = "https://gitea.netbird.zimspace.uk:5938/debont80/FreightCalculatorPro.git"
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.6.2", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.11.2", features = [] }
tauri-plugin-log = "2"