scrcpy-mask/src-tauri/Cargo.toml

25 lines
788 B
TOML
Raw Normal View History

2024-04-13 08:32:42 +08:00
[package]
name = "scrcpy-mask"
2024-05-31 18:47:52 +08:00
version = "0.6.0"
2024-04-13 08:32:42 +08:00
description = "A Tauri App"
2024-04-14 17:15:39 +08:00
authors = ["AkiChase"]
2024-04-13 08:32:42 +08:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.0.0-beta", features = [] }
[dependencies]
2024-05-07 15:24:34 +08:00
tauri = { version = "2.0.0-beta.18", features = ["macos-private-api", "devtools"] }
tauri-plugin-store = "2.0.0-beta"
2024-04-13 08:32:42 +08:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-04-13 09:53:41 +08:00
anyhow = "1.0"
lazy_static = "1.4.0"
2024-04-13 09:53:41 +08:00
tokio = { version = "1.36.0", features = ["rt-multi-thread", "net", "macros", "io-util", "time", "sync"] }
2024-05-07 15:24:34 +08:00
tauri-plugin-process = "2.0.0-beta"
tauri-plugin-shell = "2.0.0-beta"
tauri-plugin-http = "2.0.0-beta"
tauri-plugin-clipboard-manager = "2.1.0-beta.2"