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"
|
2024-10-16 10:34:13 +00:00
|
|
|
version = "4.2.2"
|
2022-05-04 12:22:40 +00:00
|
|
|
description = "Yet another matrix client"
|
|
|
|
authors = ["Ajay Bura"]
|
2023-02-24 12:00:37 +00:00
|
|
|
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]
|
2024-10-03 07:06:41 +00:00
|
|
|
tauri-build = { version = "1.5.5", features = [] }
|
2022-04-29 14:22:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-06-04 04:20:01 +00:00
|
|
|
serde_json = "1.0.109"
|
2024-06-04 04:21:10 +00:00
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
2024-10-03 07:06:15 +00:00
|
|
|
tauri = { version = "1.8.0", features = ["api-all", "devtools", "updater"] }
|
2024-09-13 12:04:35 +00:00
|
|
|
tauri-plugin-localhost = "0.1.0"
|
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" ]
|