forked from gentoo90/winreg-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (34 loc) · 1.02 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 = "winreg"
version = "0.5.1"
authors = ["Igor Shaula <[email protected]>"]
license = "MIT"
description = "Rust bindings to MS Windows Registry API"
repository = "https://github.com/gentoo90/winreg-rs"
documentation = "https://gentoo90.github.io/winreg-rs/v0.5.1/winreg"
readme = "README.md"
keywords = ["Windows", "WinSDK", "Registry"]
categories = ["api-bindings", "os::windows-apis"]
[dependencies]
winapi = { version = "0.3", features = ["minwindef", "winerror", "winnt", "winreg", "handleapi"] }
serde = { version = "1", optional = true }
clippy = { version = "^0", optional = true }
[dev-dependencies]
rand = "0.3"
serde_derive = "1"
[features]
transactions = ["winapi/ktmw32"]
serialization-serde = ["transactions", "serde"]
[[example]]
name = "basic_usage"
[[example]]
name = "enum"
[[example]]
name = "transactions"
required-features = ["transactions"]
[[example]]
name = "serialization"
required-features = ["serialization-serde"]
[[example]]
name = "installed_apps"
required-features = ["serialization-serde"]