mirror of https://github.com/pozm/gdke.git
25 lines
590 B
TOML
25 lines
590 B
TOML
[package]
|
|
name = "gdke-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 = "gdke_gui_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-rc", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0.0-rc", features = [] }
|
|
tauri-plugin-shell = "2.0.0-rc"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-plugin-dialog = "2.0.0-rc"
|
|
anyhow = "*"
|
|
gdke = { path = "../.." }
|