-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.09 KB
/
Cargo.toml
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
42
[package]
name = "tauri-plugin-shion-watcher"
version = "0.0.0"
authors = ["You"]
description = ""
edition = "2021"
rust-version = "1.70"
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
links = "tauri-plugin-shion-watcher"
[dependencies]
tauri = { version = "2.0.0-rc.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
log = "^0.4"
anyhow = "1.0"
parking_lot = "^0.12"
crossbeam-channel = "^0.5"
lazy_static = "^1.4.0"
chrono = "^0.4"
once_cell = "1"
image = "0.25.1"
[target."cfg(target_os = \"windows\")".dependencies]
windows = { version = "0.52.0", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_UI_Accessibility",
"Win32_UI_WindowsAndMessaging",
"Win32_Storage_FileSystem",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_UI_Shell",
] }
nodio-win32 = { git = "https://github.com/hanaTsuk1/nodio" }
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
rdev = "0.5"
[build-dependencies]
tauri-plugin = { version = "2.0.0-rc.0", features = ["build"] }