lume/src-tauri/Cargo.toml

72 lines
2.4 KiB
TOML
Raw Permalink Normal View History

2023-02-21 14:58:47 +07:00
[package]
name = "Lume"
2024-11-01 18:33:03 +07:00
version = "24.11.0"
2024-03-02 16:08:01 +07:00
description = "nostr client"
authors = ["npub1zfss807aer0j26mwp2la0ume0jqde3823rmu97ra6sgyyg956e0s6xw445"]
repository = "https://github.com/lumehq/lume"
edition = "2021"
rust-version = "1.70"
2023-02-21 14:58:47 +07:00
[build-dependencies]
2024-10-03 09:00:48 +07:00
tauri-build = { version = "2.0.0", features = [] }
2023-02-21 14:58:47 +07:00
[dependencies]
2024-10-27 15:57:32 +07:00
tauri = { version = "2.0.0", features = [ "protocol-asset",
"unstable",
"tray-icon",
2024-10-27 15:57:32 +07:00
"macos-private-api"
2024-03-02 16:08:01 +07:00
] }
2024-10-03 09:00:48 +07:00
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"
2024-10-29 15:05:03 +07:00
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", rev = "8c67d44" }
2024-10-03 09:00:48 +07:00
tauri-plugin-prevent-default = "0.6"
2024-10-23 10:16:56 +07:00
tauri-plugin-theme = "2.1.2"
tauri-plugin-decorum = { git = "https://github.com/clearlysid/tauri-plugin-decorum" }
2024-08-10 16:45:56 +07:00
tauri-specta = { version = "2.0.0-rc.15", features = ["derive", "typescript"] }
2024-11-07 09:26:28 +07:00
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", features = ["lmdb", "webln", "all-nips"] }
nostr-connect = { git = "https://github.com/rust-nostr/nostr" }
2024-08-10 16:45:56 +07:00
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"] }
2024-11-03 13:05:24 +07:00
keyring-search = { git = "https://github.com/reyamir/keyring-search" }
2024-10-25 14:57:12 +07:00
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
[patch.'https://github.com/rust-nostr/nostr']
nostr-sdk = { git = "https://github.com/reyamir/nostr", branch = "feat/open-auth-url", features = ["lmdb", "webln", "all-nips"] }
nostr-connect = { git = "https://github.com/reyamir/nostr", branch = "feat/open-auth-url" }
[target.'cfg(target_os = "macos")'.dependencies]
2024-07-19 08:33:16 +07:00
border = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }
2024-10-23 10:16:56 +07:00
share-picker = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }
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