2023-02-21 14:58:47 +07:00
|
|
|
[package]
|
2024-03-02 16:08:01 +07:00
|
|
|
name = "lume"
|
|
|
|
version = "4.0.0"
|
|
|
|
description = "nostr client"
|
|
|
|
authors = ["npub1zfss807aer0j26mwp2la0ume0jqde3823rmu97ra6sgyyg956e0s6xw445"]
|
|
|
|
repository = "https://github.com/lumehq/lume"
|
|
|
|
edition = "2021"
|
2024-03-06 11:11:24 +07:00
|
|
|
rust-version = "1.68"
|
2023-02-21 14:58:47 +07:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-02-05 08:14:58 +07:00
|
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
2023-02-21 14:58:47 +07:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-18 07:52:28 +07:00
|
|
|
nostr-sdk = { version = "0.31", features = ["sqlite"] }
|
2024-03-02 16:08:01 +07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
tauri = { version = "2.0.0-beta", features = [
|
2024-05-30 15:40:44 +07:00
|
|
|
"unstable",
|
|
|
|
"tray-icon",
|
|
|
|
"macos-private-api",
|
|
|
|
"native-tls-vendored",
|
|
|
|
"protocol-asset",
|
2024-03-02 16:08:01 +07:00
|
|
|
] }
|
2024-05-16 14:24:55 +07:00
|
|
|
tauri-plugin-clipboard-manager = "2.1.0-beta"
|
2024-03-02 16:08:01 +07:00
|
|
|
tauri-plugin-dialog = "2.0.0-beta"
|
|
|
|
tauri-plugin-fs = "2.0.0-beta"
|
|
|
|
tauri-plugin-http = "2.0.0-beta"
|
|
|
|
tauri-plugin-notification = "2.0.0-beta"
|
|
|
|
tauri-plugin-os = "2.0.0-beta"
|
|
|
|
tauri-plugin-process = "2.0.0-beta"
|
|
|
|
tauri-plugin-shell = "2.0.0-beta"
|
|
|
|
tauri-plugin-updater = "2.0.0-beta"
|
|
|
|
tauri-plugin-upload = "2.0.0-beta"
|
|
|
|
tauri-plugin-window-state = "2.0.0-beta"
|
2024-05-22 13:24:58 +07:00
|
|
|
tauri-plugin-decorum = "0.1.0"
|
2024-03-02 16:08:01 +07:00
|
|
|
webpage = { version = "2.0", features = ["serde"] }
|
|
|
|
keyring = "2"
|
2024-05-22 13:24:58 +07:00
|
|
|
keyring-search = "0.2.0"
|
2024-05-25 15:21:40 +07:00
|
|
|
specta = "=2.0.0-rc.12"
|
|
|
|
tauri-specta = { version = "=2.0.0-rc.10", features = ["typescript"] }
|
2024-05-26 16:11:27 +07:00
|
|
|
tauri-plugin-theme = "0.4.1"
|
2024-02-24 14:41:57 +07:00
|
|
|
|
2024-03-29 13:26:35 +07:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
cocoa = "0.25.0"
|
|
|
|
objc = "0.2.7"
|
|
|
|
rand = "0.8.5"
|
|
|
|
|
2024-02-24 14:41:57 +07:00
|
|
|
[profile.release]
|
2024-03-02 16:08:01 +07:00
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
|
|
|
incremental = false
|
|
|
|
opt-level = "z"
|
|
|
|
strip = true
|
|
|
|
rpath = false
|
|
|
|
debug = false
|
2024-02-24 14:41:57 +07:00
|
|
|
debug-assertions = false
|
2024-03-02 16:08:01 +07:00
|
|
|
overflow-checks = false
|