mirror of
https://github.com/lumehq/lume.git
synced 2025-03-19 06:11:45 +01:00
* feat: add tauri nspanel * feat: add notification panel * feat: move notification service to backend * feat: add sync notification job * feat: enable panel to join all spaces including fullscreen (#203) * feat: fetch notification * feat: listen for new notification * feat: finish panel --------- Co-authored-by: Victor Aremu <me@victorare.mu>
60 lines
2.2 KiB
TOML
60 lines
2.2 KiB
TOML
[package]
|
|
name = "lume"
|
|
version = "4.0.0"
|
|
description = "nostr client"
|
|
authors = ["npub1zfss807aer0j26mwp2la0ume0jqde3823rmu97ra6sgyyg956e0s6xw445"]
|
|
repository = "https://github.com/lumehq/lume"
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
|
|
|
[dependencies]
|
|
nostr-sdk = { version = "0.31", features = ["sqlite"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
monitor = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }
|
|
tauri = { version = "2.0.0-beta", features = [
|
|
"unstable",
|
|
"tray-icon",
|
|
"macos-private-api",
|
|
"native-tls-vendored",
|
|
"protocol-asset",
|
|
] }
|
|
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-upload = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
|
|
tauri-nspanel = { git = "https://github.com/ahkohd/tauri-nspanel", branch = "v2" }
|
|
tauri-specta = { version = "^2.0.0-rc.11", features = ["typescript"] }
|
|
tauri-plugin-theme = "0.4.1"
|
|
tauri-plugin-decorum = "0.1.0"
|
|
specta = "^2.0.0-rc.12"
|
|
keyring = "2"
|
|
keyring-search = "0.2.0"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = "0.25.0"
|
|
objc = "0.2.7"
|
|
rand = "0.8.5"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
panic = "abort"
|
|
incremental = false
|
|
opt-level = "z"
|
|
strip = true
|
|
rpath = false
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|