Files
cinny-desktop/src-tauri/Cargo.toml
T

47 lines
1.4 KiB
TOML
Raw 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-02-23 23:16:03 +11:00
version = "4.10.5"
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"] }
2026-03-03 23:16:04 +11:00
tauri = { version = "2", features = [ "devtools"] }
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"
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"
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]