lume/src-tauri/Cargo.toml

60 lines
2.8 KiB
TOML
Raw Normal View History

2023-02-21 07:58:47 +00:00
[package]
name = "lume"
2023-11-01 08:08:22 +00:00
version = "2.0.1"
2023-09-05 10:25:00 +00:00
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-09-06 00:46:31 +00:00
rust-version = "1.66"
2023-02-21 07:58:47 +00:00
[build-dependencies]
2023-10-11 06:45:56 +00:00
tauri-build = { version = "2.0.0-alpha", features = [] }
2023-02-21 07:58:47 +00:00
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2023-10-06 01:30:59 +00:00
tauri = { version = "2.0.0-alpha", features = [
2023-10-11 06:45:56 +00:00
"macos-private-api",
2023-10-06 01:30:59 +00:00
"native-tls-vendored",
2023-08-17 08:11:40 +00:00
] }
2023-10-06 01:30:59 +00: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-single-instance = { 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-10-06 02:08:37 +00:00
tauri-plugin-sql = { git = "hhttps://github.com/tauri-apps/plugins-workspace", branch = "v2", features = [
"sqlite",
] }
2023-07-27 02:25:47 +00:00
sqlx-cli = { version = "0.7.0", default-features = false, features = [
"sqlite",
] }
2023-09-04 07:35:57 +00:00
webpage = { version = "1.6.0", features = ["serde"] }
2023-10-11 07:46:35 +00:00
keyring = "2"
2023-09-27 11:24:58 +00:00
2023-02-21 07:58:47 +00:00
[features]
2023-09-06 00:46:31 +00: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 00:44:57 +00:00
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