cinny-desktop/src-tauri/Cargo.toml

30 lines
1 KiB
TOML
Raw Normal View History

2022-05-04 12:22:40 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-04-29 14:22:14 +00:00
[package]
2022-08-07 15:05:52 +00:00
name = "cinny"
2023-11-01 10:53:00 +00:00
version = "3.2.1"
2022-05-04 12:22:40 +00:00
description = "Yet another matrix client"
authors = ["Ajay Bura"]
license = "AGPL-3.0-only"
2022-05-04 12:22:40 +00:00
repository = "https://github.com/cinnyapp/cinny-desktop"
default-run = "cinny"
2022-04-29 14:22:14 +00:00
edition = "2021"
2022-05-25 05:41:00 +00:00
rust-version = "1.61"
2022-04-29 14:22:14 +00:00
[build-dependencies]
tauri-build = { version = "1.5.2", features = [] }
2022-04-29 14:22:14 +00:00
[dependencies]
serde_json = "1.0.109"
serde = { version = "1.0.193", features = ["derive"] }
tauri = { version = "1.6.7", features = ["api-all", "devtools", "system-tray", "updater"] }
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2022-04-29 14:22:14 +00:00
[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" ]