lume/src-tauri/Cargo.toml

69 lines
2.3 KiB
TOML
Raw Normal View History

2023-02-21 07:58:47 +00:00
[package]
name = "lume"
2023-09-05 10:25:00 +00:00
version = "1.2.2"
description = "the communication app"
2023-02-21 07:58:47 +00:00
authors = ["Ren Amamiya"]
2023-08-28 03:39:18 +00:00
license = "GPL-3.0"
repository = "https://github.com/luminous-devs/lume"
2023-02-21 07:58:47 +00:00
edition = "2021"
2023-08-09 12:04:32 +00:00
rust-version = "1.71"
2023-02-21 07:58:47 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
2023-09-02 05:15:48 +00:00
tauri-build = { version = "1.4.0", features = [] }
2023-02-21 07:58:47 +00:00
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2023-09-04 00:44:57 +00:00
tauri = { version = "1.4.0", features = [
"fs-read-dir",
"fs-read-file",
2023-09-02 05:49:04 +00:00
"window-start-dragging",
"path-all",
"http-all",
2023-09-02 05:15:48 +00:00
"clipboard-write-text",
"os-all",
"notification-all",
"clipboard-read-text",
"window-set-resizable",
"window-set-size",
"shell-open",
"fs-write-file",
"app-all",
"fs-remove-file",
"window-center",
"dialog-all",
2023-08-17 08:11:40 +00:00
"macos-private-api",
2023-09-05 05:46:00 +00:00
"http-multipart",
2023-08-17 08:11:40 +00:00
] }
2023-09-04 00:44:57 +00:00
tauri-plugin-sql = { git = "hhttps://github.com/tauri-apps/plugins-workspace", branch = "v1", features = [
"sqlite",
] }
2023-09-02 05:15:48 +00:00
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-stronghold = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-upload = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2023-09-02 05:49:04 +00:00
window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy", branch = "dev" }
window-shadows = { git = "https://github.com/tauri-apps/window-shadows", branch = "dev" }
2023-07-27 02:25:47 +00:00
sqlx-cli = { version = "0.7.0", default-features = false, features = [
"sqlite",
] }
2023-07-09 00:55:23 +00:00
rust-argon2 = "1.0"
2023-09-04 07:35:57 +00:00
webpage = { version = "1.6.0", features = ["serde"] }
2023-02-21 07:58:47 +00:00
[features]
2023-09-04 00:44:57 +00:00
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
2023-04-19 02:49:19 +00: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