mraow/client/src-tauri/Cargo.toml

30 lines
878 B
TOML
Raw Normal View History

2023-05-04 23:08:27 +00:00
[package]
2023-05-08 20:14:24 +00:00
name = "mraow-client"
2023-05-04 23:08:27 +00:00
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
2023-05-08 20:14:24 +00:00
default-run = "mraow-client"
2023-05-04 23:08:27 +00:00
edition = "2021"
rust-version = "1.60"
[build-dependencies]
tauri-build = { version = "1.3.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.3.0", features = [] }
2023-05-08 20:14:24 +00:00
mraow-common = { path = "../../common" }
tokio = { version = "1.28.0", features = ["full"] }
anyhow = "1.0.71"
2023-05-04 23:08:27 +00:00
[features]
2023-05-08 20:14:24 +00:00
default = ["mraow-common/client"]
2023-05-04 23:08:27 +00:00
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
# DO NOT REMOVE!!
2023-05-08 20:14:24 +00:00
custom-protocol = ["tauri/custom-protocol"]