41 lines
779 B
TOML
41 lines
779 B
TOML
[package]
|
|
name = "finwise"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
rust-version = "1.85.0"
|
|
|
|
[lib]
|
|
name = "finwise_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[[bin]]
|
|
name = "finwise"
|
|
path = "src/main.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sea-orm = { workspace = true }
|
|
chrono = { workspace = true }
|
|
migration = { path = "../crates/migration" }
|
|
thiserror = "2"
|
|
rust_decimal = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[profile.dev]
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 3
|
|
# panic = "abort"
|
|
strip = true
|