lume/src-tauri/Cargo.toml

65 lines
3.0 KiB
TOML
Raw Normal View History

2023-02-21 07:58:47 +00:00
[package]
name = "lume"
2023-08-09 12:04:32 +00:00
version = "1.2.0"
2023-02-21 07:58:47 +00:00
description = "nostr client"
authors = ["Ren Amamiya"]
license = ""
repository = ""
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-08-15 14:13:58 +00:00
tauri-build = { version = "2.0.0-alpha.8", features = [] }
2023-02-21 07:58:47 +00:00
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2023-08-17 08:11:40 +00:00
tauri = { version = "2.0.0-alpha.11", features = [
"protocol-asset",
"macos-private-api",
] }
2023-07-29 01:13:53 +00:00
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-stronghold = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-upload = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
2023-07-29 02:28:15 +00:00
tauri-plugin-updater = { 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-http = { 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-clipboard-manager = { 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-app = { 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-os = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
2023-07-29 08:42:44 +00:00
tauri-plugin-window = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
2023-07-30 01:13:24 +00:00
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
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"
[dependencies.tauri-plugin-sql]
git = "https://github.com/tauri-apps/plugins-workspace"
2023-07-29 01:13:53 +00:00
branch = "v2"
features = ["sqlite"]
2023-02-21 07:58:47 +00:00
[features]
# 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-08-15 14:13:58 +00:00
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