mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
[package]
|
|
name = "godoos"
|
|
version = "1.0.6"
|
|
description = "godoos - desktop"
|
|
authors = ["godoos.com"]
|
|
license = "Gund-GPL-3.0"
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.2.0", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.5.0", features = [] }
|
|
tauri-plugin-log = "2.0.0-rc"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-store = "2"
|
|
tauri-plugin-os = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-upload = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-websocket = "2"
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-single-instance = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-window-state = "2"
|
|
|
|
[dependencies.tauri-plugin-sql]
|
|
features = ["sqlite"] # or "postgres", or "mysql"
|
|
version = "2.0.0"
|
|
|