lume/src-tauri/Cargo.toml

70 lines
1.9 KiB
TOML
Raw Normal View History

2023-02-21 07:58:47 +00:00
[package]
2024-03-02 09:08:01 +00:00
name = "lume"
version = "4.0.0"
description = "nostr client"
authors = ["npub1zfss807aer0j26mwp2la0ume0jqde3823rmu97ra6sgyyg956e0s6xw445"]
repository = "https://github.com/lumehq/lume"
edition = "2021"
rust-version = "1.70"
2023-02-21 07:58:47 +00:00
[build-dependencies]
2024-08-10 09:45:56 +00:00
tauri-build = { version = "2.0.0-rc", features = [] }
2023-02-21 07:58:47 +00:00
[dependencies]
2024-08-10 09:45:56 +00:00
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", features = [
"sqlite",
] }
2024-03-02 09:08:01 +00:00
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2024-08-10 09:45:56 +00:00
tauri = { version = "2.0.0-rc", features = [
"unstable",
"tray-icon",
"macos-private-api",
"protocol-asset",
2024-03-02 09:08:01 +00:00
] }
2024-08-10 09:45:56 +00:00
tauri-plugin-window-state = "2.0.0-rc"
tauri-plugin-clipboard-manager = "2.0.0-rc"
tauri-plugin-dialog = "2.0.0-rc"
tauri-plugin-fs = "2.0.0-rc"
tauri-plugin-http = "2.0.0-rc"
tauri-plugin-notification = "2.0.0-rc"
tauri-plugin-os = "2.0.0-rc"
tauri-plugin-process = "2.0.0-rc"
tauri-plugin-shell = "2.0.0-rc"
tauri-plugin-updater = "2.0.0-rc"
tauri-plugin-upload = "2.0.0-rc"
tauri-plugin-theme = "0.4.1"
2024-08-10 09:45:56 +00:00
tauri-plugin-decorum = "1.0.0"
tauri-plugin-prevent-default = "0.3"
2024-08-10 09:45:56 +00:00
tauri-specta = { version = "2.0.0-rc.15", features = ["derive", "typescript"] }
specta = "^2.0.0-rc.20"
specta-typescript = "0.0.7"
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 = "1.2.0"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.25.0"
objc = "0.2.7"
rand = "0.8.5"
2024-07-01 06:04:32 +00:00
monitor = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }
tauri-nspanel = { git = "https://github.com/ahkohd/tauri-nspanel", branch = "v2" }
2024-07-19 01:33:16 +00:00
border = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }
2024-02-24 07:41:57 +00:00
[profile.release]
2024-03-02 09:08:01 +00:00
codegen-units = 1
lto = true
panic = "abort"
incremental = false
opt-level = "z"
strip = true
rpath = false
debug = false
2024-02-24 07:41:57 +00:00
debug-assertions = false
2024-03-02 09:08:01 +00:00
overflow-checks = false