29 lines
679 B
TOML
29 lines
679 B
TOML
[package]
|
|
name = "wallitor-gui"
|
|
version = "0.1.0"
|
|
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 = "wallitor_gui_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-rc", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0.0-rc", features = ["unstable", "tray-icon"] }
|
|
tauri-plugin-shell = "2.0.0-rc"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
window-vibrancy = "0.5.2"
|
|
tauri-plugin-fs = "2.0.0-rc"
|
|
tauri-plugin-dialog = "2.0.0-rc"
|
|
chrono = "0.4.38"
|
|
libloading = "0.8.5"
|
|
|