b89ec90813
Voice messages, offline queue, delivery receipts, group call scaling, recovery code, push notifications scaffolding, admin panel, search v2, focus-flicker fix.
33 lines
932 B
TOML
33 lines
932 B
TOML
[package]
|
|
name = "chat-app-desktop"
|
|
version = "0.8.0"
|
|
description = "ChatApp desktop client"
|
|
authors = ["Dennis"]
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
|
|
[lib]
|
|
name = "chat_app_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-sql = { version = "2", features = ["sqlite"] }
|
|
tauri-plugin-stronghold = "2"
|
|
tauri-plugin-fs = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
|
tauri-plugin-global-shortcut = "2"
|
|
tauri-plugin-updater = "2"
|
|
|
|
[features]
|
|
# This feature is used for production builds or when `devPath` points to the filesystem
|
|
# and disables specific features relevant to the dev build.
|
|
custom-protocol = ["tauri/custom-protocol"]
|