echoed/src-tauri/Cargo.toml
2024-11-27 00:22:53 +00:00

35 lines
1.1 KiB
TOML

[package]
name = "echoed"
version = "0.1.0"
publish = false
description = "echo360 desktop application"
authors = ["newt <hi@newty.dev>"]
edition = "2021"
[lib]
name = "echoed_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest_cookie_store = { path = "../reqwest_cookie_store_tokio" }
thiserror = "2.0.3"
regex = { version = "1.11.1", default-features = false, features = ["perf", "std"] }
url = { version = "2.5.4", default-features = false }
tauri-plugin-http = { version = "2", features = ["multipart", "json"] }
[profile.dev]
incremental = true # Compile your binary in smaller steps.
[profile.release]
codegen-units = 1 # Allows LLVM to perform better optimization.
lto = true # Enables link-time-optimizations.
opt-level = "s" # Prioritizes small binary size. Use `3` if you prefer speed.
panic = "abort" # Higher performance by disabling panic handlers.
strip = true # Ensures debug symbols are removed.