-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 850 Bytes
/
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
[package]
name = "BlueGauge"
version = "0.1.2"
edition = "2021"
authors = ["iKineticate <https://github.com/iKineticate>"]
[dependencies]
tray-icon = "0.19.2"
image = "0.25"
tao = "0.31.1"
scalefs_windowspnp = { path = "libs/scalefs_windowspnp" }
anyhow = "1.0.95"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3"
rust-ini = "0.21"
glob = "0.3.2"
tauri-winrt-notification = "0.7.0"
[dependencies.windows]
version = "0.59.0"
features = [
"Devices_Bluetooth",
"Devices_Bluetooth_GenericAttributeProfile",
"Devices_Enumeration",
"Foundation_Collections",
"Storage_Streams",
]
[dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Devices_Properties",
"Win32_Devices_DeviceAndDriverInstallation"
]
[build-dependencies]
embed-resource = "3.0.1"
[profile.release]
lto = true
codegen-units = 1