-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.99 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "winvd-monitoring"
version = "0.1.1"
description = ""
authors = ["Jari O. O. Pennanen <[email protected]>"]
license = "MIT"
repository = ""
default-run = "winvd-monitoring"
edition = "2021"
# rust-version = "1.76.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
# winvd = "0.0.40"
winvd = { path = "../winvd" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.5.2", features = [
"devtools",
"icon-ico",
"icon-png",
"system-tray",
"window-all",
] }
raw-window-handle = "0.5"
windows = { version = "0.56", features = [
# Find WinApi features with searching here https://microsoft.github.io/windows-docs-rs/
# https://microsoft.github.io/windows-docs-rs/doc/windows/Win32/Graphics/Dwm/fn.DwmExtendFrameIntoClientArea.html
"Win32_Graphics_Dwm",
"Win32_Foundation",
"Win32_UI_Controls",
"Win32_UI_WindowsAndMessaging", # for TranslateMessage etc.
"Win32_System_LibraryLoader", # for GetModuleHandle
"Win32_Graphics_Gdi", # for WNDCLASSA
"Win32_System_Power", # for RegisterPowerSettingNotification
"Win32_System_SystemServices", # GUID_POWERSCHEME_PERSONALITY
] }
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
[dependencies.tauri-plugin-sql]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v1"
features = ["sqlite"] # or "postgres", or "mysql"
# [profile.release]
# debug = true
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
integration-tests = []