[package] name = "Lume" version = "24.11.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", features = [] } [dependencies] tauri = { version = "2.0.0", features = [ "protocol-asset", "unstable", "tray-icon", "macos-private-api" ] } tauri-plugin-window-state = "2.0.0" tauri-plugin-clipboard-manager = "2.0.0" tauri-plugin-dialog = "2.0.0" tauri-plugin-fs = "2.0.0" tauri-plugin-http = "2.0.0" tauri-plugin-notification = "2.0.0" tauri-plugin-os = "2.0.0" tauri-plugin-process = "2.0.0" tauri-plugin-shell = "2.0.0" tauri-plugin-updater = "2.0.0" tauri-plugin-upload = "2.0.0" tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", rev = "8c67d44" } tauri-plugin-prevent-default = "0.6" tauri-plugin-theme = "2.1.2" tauri-plugin-decorum = { git = "https://github.com/clearlysid/tauri-plugin-decorum" } tauri-specta = { version = "2.0.0-rc.15", features = ["derive", "typescript"] } nostr-sdk = { git = "https://github.com/rust-nostr/nostr", features = ["lmdb"] } nostr-connect = { git = "https://github.com/rust-nostr/nostr" } specta = "^2.0.0-rc.20" specta-typescript = "0.0.7" tokio = { version = "1", features = ["full"] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } reqwest = "0.12.4" url = "2.5.0" futures = "0.3.30" linkify = "0.10.0" regex = "1.10.4" keyring = { version = "3", features = ["apple-native", "windows-native"] } keyring-search = { git = "https://github.com/reyamir/keyring-search" } tracing-subscriber = { version = "0.3.18", features = ["fmt"] } [target.'cfg(target_os = "macos")'.dependencies] border = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" } share-picker = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" } [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