31 lines
850 B
TOML
31 lines
850 B
TOML
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[package]
|
|
name = "cinny"
|
|
version = "4.10.2"
|
|
description = "Yet another matrix client"
|
|
authors = ["Ajay Bura"]
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/cinnyapp/cinny-desktop"
|
|
default-run = "cinny"
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
tauri-plugin-localhost = "2"
|
|
tauri-plugin-window-state = "2"
|
|
tauri-plugin-shell = "2"
|
|
|
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
|
tauri-plugin-single-instance = "2"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|