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]
|
2024-04-16 03:26:43 +02:00
|
|
|
tauri-build = { version = "2.0.0-beta.12", features = [] }
|
2023-09-05 01:05:04 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-23 03:10:36 +02:00
|
|
|
tauri = { version = "2.0.0-beta.16", features = ["devtools", "tray-icon"] }
|
2024-04-19 03:07:47 +02:00
|
|
|
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"
|
2024-04-22 03:50:58 +02:00
|
|
|
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"
|
2024-04-19 03:08:11 +02:00
|
|
|
tauri-plugin-single-instance = "2.0.0-beta.6"
|
2024-04-03 03:10:55 +02:00
|
|
|
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"]
|