[package] name = "app" version = "0.1.0" description = "A Tauri App" authors = ["you"] license = "" repository = "" edition = "2021" rust-version = "1.70" # 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.0.0-beta.18", features = [] } [dependencies] tauri = { version = "2.0.0-beta.23", features = ["unstable", "tray-icon", "image-png"] } tauri-plugin-clipboard-manager = "2.1.0-beta.5" tauri-plugin-window-state = "2.0.0-beta.10" tauri-plugin-sql = {version = "2.0.0-beta.8", features = ["sqlite"] } tauri-plugin-global-shortcut = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" } tauri-plugin-autostart = "2.0.0-beta.8" tauri-plugin-os = "2.0.0-beta.7" sqlx = { version = "0.7.4", features = ["runtime-tokio-native-tls", "sqlite"] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["full"] } serde_json = "1.0" rdev = "0.5.3" rand = "0.8"