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

36 lines
970 B
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-alpha", features = [] }
2023-09-05 01:05:04 +02:00
[dependencies]
2023-12-22 00:22:43 +01:00
tauri = { version = "2.0.0-alpha", features = ["devtools", "tray-icon"] }
tauri-plugin-updater = "2.0.0-alpha"
tauri-plugin-process = "2.0.0-alpha"
tauri-plugin-log = "2.0.0-alpha"
reqwest = { version = "0.11.22", features = ["json"] }
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"
2023-09-05 01:05:04 +02:00
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"]