mirror of
https://github.com/spacebarchat/client.git
synced 2024-11-22 10:22:30 +01:00
31 lines
847 B
TOML
31 lines
847 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "Spacebar Client"
|
|
authors = ["Puyodead1"]
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/spacebarchat/client"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "spacebar"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
# 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 = [] }
|
|
|
|
[dependencies]
|
|
# tauri = { version = "2.0.0-alpha", features = [] }
|
|
tauri = { git = "https://github.com/tauri-apps/tauri.git", branch = "dev", features = [
|
|
"devtools",
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|