Files

60 lines
1.7 KiB
TOML
Raw Permalink Normal View History

2022-05-04 17:52:40 +05:30
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-04-29 19:52:14 +05:30
[package]
2022-08-07 20:35:52 +05:30
name = "cinny"
2026-05-23 23:18:03 +10:00
version = "4.12.2"
2022-05-04 17:52:40 +05:30
description = "Yet another matrix client"
authors = ["Ajay Bura"]
2023-02-24 17:30:37 +05:30
license = "AGPL-3.0-only"
2022-05-04 17:52:40 +05:30
repository = "https://github.com/cinnyapp/cinny-desktop"
default-run = "cinny"
2022-04-29 19:52:14 +05:30
edition = "2021"
2022-05-25 11:11:00 +05:30
rust-version = "1.61"
2022-04-29 19:52:14 +05:30
[build-dependencies]
2026-03-03 23:16:04 +11:00
tauri-build = { version = "2", features = [] }
2022-04-29 19:52:14 +05:30
[dependencies]
serde_json = "1.0.109"
serde = { version = "1.0.193", features = ["derive"] }
tauri = { version = "2", features = ["devtools", "wry", "tray-icon", "image-png"] }
2026-03-03 23:16:04 +11:00
tauri-plugin-localhost = "2"
tauri-plugin-window-state = "2"
tauri-plugin-clipboard-manager = "2"
tauri-plugin-notification = "2"
tauri-plugin-fs = "2"
tauri-plugin-shell = "2"
tauri-plugin-http = "2"
tauri-plugin-process = "2"
tauri-plugin-os = "2"
tauri-plugin-dialog = "2"
2026-04-13 15:20:44 +08:00
tauri-plugin-opener = "2"
tauri-plugin-deep-link = "2"
2022-04-29 19:52:14 +05:30
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = [ "tauri/custom-protocol" ]
2026-03-03 23:16:04 +11:00
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-global-shortcut = "2"
tauri-plugin-updater = "2"
tauri-plugin-single-instance = "2"
2026-03-03 23:16:04 +11:00
[target.'cfg(target_os = "windows")'.dependencies]
webview2-com = "0.38"
window-vibrancy = "0.6"
windows = { version = "0.61", features = [
"Win32_Graphics_Gdi",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
] }
2026-03-03 23:16:04 +11:00
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]