28 lines
751 B
TOML
28 lines
751 B
TOML
|
[package]
|
||
|
name = "loongpanel_mobile"
|
||
|
version = "0.0.1"
|
||
|
description = "A Tauri App"
|
||
|
authors = ["you"]
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[lib]
|
||
|
name = "loongpanel_mobile_lib"
|
||
|
crate-type = ["lib", "cdylib", "staticlib"]
|
||
|
|
||
|
[build-dependencies]
|
||
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
||
|
|
||
|
[dependencies]
|
||
|
tauri = { version = "2.0.0-beta", features = [] }
|
||
|
tauri-plugin-shell = "2.0.0-beta"
|
||
|
serde = { version = "1", features = ["derive"] }
|
||
|
serde_json = "1"
|
||
|
tauri-plugin-dialog = "2.0.0-beta.11"
|
||
|
tauri-plugin-notification = "2.0.0-beta.10"
|
||
|
|
||
|
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
|
||
|
tauri-plugin-barcode-scanner = "2.0.0-beta.9"
|
||
|
|