-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 772 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 772 Bytes
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
[package]
name = "query-wmi"
version = "1.1.3"
edition = "2021"
authors = ["sn99 <siddharthn.099@gmail.com>"]
description = "A crate to query WMI classes in Windows OS"
repository = "https://github.com/SubconsciousCompute/query-wmi"
homepage = "https://github.com/SubconsciousCompute/query-wmi"
keywords = ["wmi", "query", "windows", "win32", "com"]
readme = "README.md"
documentation = "https://docs.rs/query-wmi"
license = "AGPL-3.0-only"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(target_os = "windows")'.dependencies]
wmi = "0.11.4"
serde = "1.0.152"
paste = "1.0.11"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3