2023-02-21 14:58:47 +07:00
|
|
|
[package]
|
|
|
|
name = "lume"
|
2023-12-03 08:38:32 +07:00
|
|
|
version = "2.2.0"
|
2023-09-05 17:25:00 +07:00
|
|
|
description = "the communication app"
|
2023-02-21 14:58:47 +07:00
|
|
|
authors = ["Ren Amamiya"]
|
2023-08-28 10:39:18 +07:00
|
|
|
license = "GPL-3.0"
|
|
|
|
repository = "https://github.com/luminous-devs/lume"
|
2023-02-21 14:58:47 +07:00
|
|
|
edition = "2021"
|
2023-09-06 07:46:31 +07:00
|
|
|
rust-version = "1.66"
|
2023-02-21 14:58:47 +07:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-10-11 13:45:56 +07:00
|
|
|
tauri-build = { version = "2.0.0-alpha", features = [] }
|
2023-02-21 14:58:47 +07:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-10-06 08:30:59 +07:00
|
|
|
tauri = { version = "2.0.0-alpha", features = [
|
2023-10-11 13:45:56 +07:00
|
|
|
"macos-private-api",
|
2023-10-06 08:30:59 +07:00
|
|
|
"native-tls-vendored",
|
2023-08-17 15:11:40 +07:00
|
|
|
] }
|
2023-10-06 08:30:59 +07:00
|
|
|
tauri-plugin-cli = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-clipboard-manager = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-dialog = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-fs = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-http = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-notification = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-os = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-process = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-updater = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
|
|
tauri-plugin-upload = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
2023-11-16 08:25:08 +07:00
|
|
|
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
2023-11-22 15:27:19 +07:00
|
|
|
tauri-plugin-theme = { git = "https://github.com/wyhaya/tauri-plugin-theme" }
|
2023-10-06 09:08:37 +07:00
|
|
|
tauri-plugin-sql = { git = "hhttps://github.com/tauri-apps/plugins-workspace", branch = "v2", features = [
|
|
|
|
"sqlite",
|
|
|
|
] }
|
2023-07-27 09:25:47 +07:00
|
|
|
sqlx-cli = { version = "0.7.0", default-features = false, features = [
|
|
|
|
"sqlite",
|
|
|
|
] }
|
2023-09-04 14:35:57 +07:00
|
|
|
webpage = { version = "1.6.0", features = ["serde"] }
|
2023-10-11 14:46:35 +07:00
|
|
|
keyring = "2"
|
2023-09-27 18:24:58 +07:00
|
|
|
|
2023-02-21 14:58:47 +07:00
|
|
|
[features]
|
2023-09-06 07:46:31 +07:00
|
|
|
# by default Tauri runs in production mode
|
|
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
|
|
default = ["custom-protocol"]
|
|
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
|
|
# DO NOT remove this
|
2023-09-04 07:44:57 +07:00
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2023-04-19 09:49:19 +07:00
|
|
|
|
|
|
|
# Optimized for bundle size. If you want faster builds comment out/delete this section.
|
|
|
|
[profile.release]
|
|
|
|
lto = true # Enable Link Time Optimization
|
|
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
|
|
panic = "abort" # Abort on panic
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
debug = false
|