-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "Blink-Eye"
version = "2.7.6"
description = "A minimalist eye care reminder app for Windows, macOS, and Linux."
authors = ["Noman Dhoni"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "blink_eye_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.0.3", features = [] }
[dependencies]
tauri = { version = "2.1.1", features = [ "protocol-asset", "tray-icon", "image-png" ] }
tauri-plugin-shell = "2.0.2"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tauri-plugin-store = "2.1.0"
tauri-plugin-process = "2"
tauri-plugin-notification = "2.0.1"
tauri-plugin-http = "2"
tauri-plugin-sql = { version = "2.0.2", features = ["sqlite"] }
tauri-plugin-fs = "2.0.3"
tauri-plugin-dialog = "2"
idle = "0.2.0"
tauri-plugin-os = "2"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
tokio = { version = "1", features = ["time"] }
chrono = "0.4"
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
tauri-plugin-autostart = "2.0.1"
tauri-plugin-global-shortcut = "2"
tauri-plugin-updater = "2.0.2"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-global-shortcut = "2"