2023-09-05 01:05:04 +02:00
|
|
|
[package]
|
2023-10-02 16:53:26 +02:00
|
|
|
name = "app"
|
2023-09-08 01:40:10 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
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]
|
2023-09-06 20:58:10 +02:00
|
|
|
tauri-build = { version = "2.0.0-alpha", features = [] }
|
2023-09-05 01:05:04 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-08 01:40:10 +02:00
|
|
|
# tauri = { version = "2.0.0-alpha", features = [] }
|
2023-09-15 05:04:13 +02:00
|
|
|
tauri = { git = "https://github.com/tauri-apps/tauri.git", branch = "dev", features = [
|
2023-09-15 18:20:16 +02:00
|
|
|
"devtools",
|
2023-09-15 05:04:13 +02:00
|
|
|
] }
|
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
|
|
|
|
|
|
|
[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"]
|