1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 18:32:34 +01:00
client/src-tauri/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2023-09-05 01:05:04 +02:00
[package]
2023-10-02 16:53:26 +02:00
name = "app"
2023-12-22 00:22:43 +01:00
version = "0.0.0"
2023-09-08 01:40:10 +02:00
description = "Spacebar Client"
authors = ["Puyodead1"]
license = "AGPL-3.0-only"
repository = "https://github.com/spacebarchat/client"
2023-09-05 01:05:04 +02:00
edition = "2021"
2023-09-07 17:25:35 +02:00
[lib]
2023-09-08 01:40:10 +02:00
name = "spacebar"
2023-09-07 17:25:35 +02:00
crate-type = ["staticlib", "cdylib", "rlib"]
2023-09-05 01:05:04 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.0.0-beta.12", features = [] }
2023-09-05 01:05:04 +02:00
[dependencies]
tauri = { version = "2.0.0-beta.16", features = ["devtools", "tray-icon"] }
tauri-plugin-updater = "2.0.0-beta.4"
2023-12-22 00:22:43 +01:00
tauri-plugin-process = "2.0.0-alpha"
tauri-plugin-log = "2.0.0-alpha"
2023-12-22 06:10:02 +01:00
tauri-plugin-os = "2.0.0-alpha"
reqwest = { version = "0.12.4", default-features = false, features = [
2024-03-22 04:27:48 +01:00
"json",
"rustls-tls",
] }
2023-12-22 00:22:43 +01:00
url = "2.4.1"
chrono = "0.4"
log = "0.4.20"
2023-09-07 17:25:35 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-03-22 04:27:48 +01:00
tauri-plugin-notification = "2.0.0-beta"
tauri-plugin-single-instance = "2.0.0-beta.6"
tauri-plugin-autostart = "2.0.0-beta.4"
2023-12-22 00:22:43 +01:00
2023-09-05 01:05:04 +02:00
[features]
2023-09-07 17:25:35 +02:00
# this feature is used for production builds or when `devPath` points to the filesystem
2023-09-05 01:05:04 +02:00
# DO NOT REMOVE!!
2023-09-05 02:16:20 +02:00
custom-protocol = ["tauri/custom-protocol"]