-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 942 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
42
[package]
name = "windows-apps-plugin"
version = "0.1.0"
edition = "2021"
[lib]
name = "windows_apps_plugin"
crate-type = ["cdylib",'rlib']
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
uwp = ["dep:windows", "dep:is_elevated", "dep:winapi"]
[dependencies]
quick-search-lib = { git = "https://github.com/quick-search-rs/quick-search-lib" }
abi_stable = "0.11.3"
winapi = { version = "0.3.9", optional = true }
is_elevated = { version = "0.1.2", optional = true }
env_logger = "0.11.2"
opener = "0.6.1"
[dependencies.windows]
version = "0.54.0"
features = [
"ApplicationModel",
"ApplicationModel_Core",
"Foundation_Collections",
"Management",
"Management_Deployment",
# "Win32",
# "Win32_Security",
# "Win32_System",
# "Win32_System_Threading",
]
optional = true
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"